Files
Blog/app/internal/svc/servicecontext.go
2025-10-24 21:44:15 +08:00

16 lines
235 B
Go

package svc
import (
"git.cialloo.com/CiallooWeb/Blog/app/internal/config"
)
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
}
}