backend/internal/svc/service_context.go

16 lines
207 B
Go
Raw Normal View History

2025-09-30 16:53:31 +00:00
package svc
import (
"backend/internal/config"
)
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
}
}