(cfg *config.Config)
| 20 | } |
| 21 | |
| 22 | func New(cfg *config.Config) *Service { |
| 23 | return &Service{ |
| 24 | Controller: *controller.New(cfg), |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | func StartGRPCListener(tlsConfig *tls.Config, addr string, cfg *config.Config) (func(ctx context.Context) error, controller.Service, error) { |
| 29 | s := New(cfg) |
no test coverage detected