Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LoginController ¶
type LoginController struct { LoginUsecase domain.LoginUsecase Env *bootstrap.Env }
func (*LoginController) Login ¶
func (lc *LoginController) Login(w http.ResponseWriter, r *http.Request)
type ProfileController ¶
type ProfileController struct {
ProfileUsecase domain.ProfileUsecase
}
func (*ProfileController) Fetch ¶
func (pc *ProfileController) Fetch(w http.ResponseWriter, r *http.Request)
type RefreshTokenController ¶
type RefreshTokenController struct { RefreshTokenUsecase domain.RefreshTokenUsecase Env *bootstrap.Env }
func (*RefreshTokenController) RefreshToken ¶
func (rtc *RefreshTokenController) RefreshToken(w http.ResponseWriter, r *http.Request)
type SignupController ¶
type SignupController struct { SignupUsecase domain.SignupUsecase Env *bootstrap.Env }
func (*SignupController) Signup ¶
func (sc *SignupController) Signup(w http.ResponseWriter, r *http.Request)
type TaskController ¶
type TaskController struct {
TaskUsecase domain.TaskUsecase
}
func (*TaskController) Create ¶
func (tc *TaskController) Create(w http.ResponseWriter, r *http.Request)
func (*TaskController) Fetch ¶
func (u *TaskController) Fetch(w http.ResponseWriter, r *http.Request)
Click to show internal directories.
Click to hide internal directories.