package handlers import "net/http" type AccountHandler struct{} func NewAccountHandler() *AccountHandler { return &AccountHandler{} } func (h *AccountHandler) HandleRegister(w http.ResponseWriter, r *http.Request){ return }