Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GovController ¶
type GovController interface { UpdateUser(c *fiber.Ctx) error DeleteUser(c *fiber.Ctx) error GetUser(c *fiber.Ctx) error ChangePassword(c *fiber.Ctx) error }
func NewGovController ¶
func NewGovController(profileService service.GovService) GovController
type GovControllerImpl ¶
type GovControllerImpl struct {
GovService service.GovService
}
func (*GovControllerImpl) ChangePassword ¶
func (a *GovControllerImpl) ChangePassword(c *fiber.Ctx) error
func (*GovControllerImpl) DeleteUser ¶
func (a *GovControllerImpl) DeleteUser(c *fiber.Ctx) error
func (*GovControllerImpl) GetUser ¶
func (a *GovControllerImpl) GetUser(c *fiber.Ctx) error
func (*GovControllerImpl) UpdateUser ¶
func (a *GovControllerImpl) UpdateUser(c *fiber.Ctx) error
Click to show internal directories.
Click to hide internal directories.