(ctx context.Context)
| 55 | } |
| 56 | |
| 57 | func (a *Application) Run(ctx context.Context) error { |
| 58 | if a == nil || a.runtime == nil { |
| 59 | return fmt.Errorf("application is not initialized") |
| 60 | } |
| 61 | return a.runtime.Run(ctx) |
| 62 | } |
| 63 | |
| 64 | func configureLogging(logPath string) error { |
| 65 | if logPath == "" { |
nothing calls this directly
no outgoing calls
no test coverage detected