package storage //ResetCodeRepository is responsible for managing the storing of password reset codes. type ResetCodeRepository interface { CreateCode(userName string, uuid string) error DeleteCode(userName string) error GetCode(userName string) (string, error) }