添加adminHandler

This commit is contained in:
2025-11-01 20:17:14 +08:00
parent c275bc2897
commit d4b91fee52
16 changed files with 518 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// Code scaffolded by goctl. Safe to edit.
// goctl 1.9.1
package svc
import (
"github.com/JACKYMYPERSON/hldrCenter/internal/admin/internal/config"
)
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
}
}