19 lines
309 B
Go
19 lines
309 B
Go
// 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,
|
|
}
|
|
}
|