hasConfiguredServices Checks if there are any services for the current application.
()
| 27 | |
| 28 | // hasConfiguredServices Checks if there are any services for the current application. |
| 29 | func (app *App) hasConfiguredServices() bool { |
| 30 | return len(app.configured.Services) > 0 |
| 31 | } |
| 32 | |
| 33 | func (app *App) validateConfiguredServices() error { |
| 34 | return validateServicesSlice(app.configured.Services) |
no outgoing calls