Integration3CXService creates a new instance of services.Integration3CXService
()
| 973 | |
| 974 | // Integration3CXService creates a new instance of services.Integration3CXService |
| 975 | func (container *Container) Integration3CXService() (service *services.Integration3CXService) { |
| 976 | container.logger.Debug(fmt.Sprintf("creating %T", service)) |
| 977 | return services.NewIntegration3CXService( |
| 978 | container.Logger(), |
| 979 | container.Tracer(), |
| 980 | container.HTTPClient("integration_3cx"), |
| 981 | container.Integration3CXRepository(), |
| 982 | ) |
| 983 | } |
| 984 | |
| 985 | // HTTPClient creates a new http.Client |
| 986 | func (container *Container) HTTPClient(name string) *http.Client { |
no test coverage detected