App is a thing that Caddy runs.
| 96 | |
| 97 | // App is a thing that Caddy runs. |
| 98 | type App interface { |
| 99 | Start() error |
| 100 | Stop() error |
| 101 | } |
| 102 | |
| 103 | // Run runs the given config, replacing any existing config. |
| 104 | func Run(cfg *Config) error { |
no outgoing calls
no test coverage detected