blockchain/internal/svc/service_context.go

14 lines
205 B
Go
Raw Normal View History

2025-08-04 01:55:56 +00:00
package svc
import "blockchain/internal/config"
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
}
}