14 lines
245 B
Go
14 lines
245 B
Go
|
package svc
|
||
|
|
||
|
import "code.30cm.net/digimon/app-cloudep-reaction-service/internal/config"
|
||
|
|
||
|
type ServiceContext struct {
|
||
|
Config config.Config
|
||
|
}
|
||
|
|
||
|
func NewServiceContext(c config.Config) *ServiceContext {
|
||
|
return &ServiceContext{
|
||
|
Config: c,
|
||
|
}
|
||
|
}
|