template/service/${REPO_NAME}_svc.go
timerzz 2351189782
Some checks failed
Build image / build (push) Failing after 9s
更新 service/${REPO_NAME}_svc.go
2024-09-04 17:05:24 +08:00

27 lines
549 B
Go

package service
import (
"gitea.timerzz.com/kedaya_haitao/common/pkg/web"
"gitea.timerzz.com/kedaya_haitao/common/structs/storage"
)
type ${REPO_NAME_PASCAL} struct {
storage *storage.Storage
}
func New${REPO_NAME_PASCAL}(storage *storage.Storage) *${REPO_NAME_PASCAL} {
return &${REPO_NAME_PASCAL}{
storage: storage,
}
}
func (s *${REPO_NAME_PASCAL}) Registry(r fiber.Router) {
api := r.Group("/api/v2")
}
func (s *${REPO_NAME_PASCAL}) List(c fiber.Ctx) error {
return c.JSON(web.NewResponse(web.NewListResponse(total, sellers)))
}