This commit is contained in:
2025-10-04 12:48:09 +08:00
commit 06180ed638
29 changed files with 1195 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package svc
import (
"src/internal/config"
)
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
}
}