1
0

servicecontext.go 201 B

1234567891011
  1. package svc
  2. import "shorturl/api/internal/config"
  3. type ServiceContext struct {
  4. Config config.Config
  5. }
  6. func NewServiceContext(c config.Config) *ServiceContext {
  7. return &ServiceContext{Config: c}
  8. }