NewLiteContainer creates a Container without any routes or listeners
()
| 100 | |
| 101 | // NewLiteContainer creates a Container without any routes or listeners |
| 102 | func NewLiteContainer() (container *Container) { |
| 103 | return &Container{ |
| 104 | logger: logger(3).WithService(fmt.Sprintf("%T", container)), |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | // NewContainer creates a new dependency injection container |
| 109 | func NewContainer(projectID string, version string) (container *Container) { |
nothing calls this directly
no test coverage detected