c0dbfd02b8
modified: main_dc/yalarba/api_yal/go.sum new file: main_dc/yalarba/api_yal/internal/dto/account_dto.go new file: main_dc/yalarba/api_yal/internal/handlers/account.go modified: main_dc/yalarba/api_yal/internal/handlers/auth.go modified: main_dc/yalarba/api_yal/internal/router/router.go new file: main_dc/yalarba/api_yal/internal/service/account_service.go add some auth functions into api_yal
14 lines
230 B
Go
14 lines
230 B
Go
package handlers
|
|
|
|
import "net/http"
|
|
|
|
type AccountHandler struct{}
|
|
|
|
func NewAccountHandler() *AccountHandler {
|
|
return &AccountHandler{}
|
|
}
|
|
|
|
func (h *AccountHandler) HandleRegister(w http.ResponseWriter, r *http.Request){
|
|
return
|
|
}
|