mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-13 09:50:00 +08:00
12 lines
201 B
Go
12 lines
201 B
Go
|
|
package svc
|
||
|
|
|
||
|
|
import "shorturl/api/internal/config"
|
||
|
|
|
||
|
|
type ServiceContext struct {
|
||
|
|
Config config.Config
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewServiceContext(c config.Config) *ServiceContext {
|
||
|
|
return &ServiceContext{Config: c}
|
||
|
|
}
|