| 12345678910111213141516 |
- package httpservers
- import (
- config "github.com/jamesread/OliveTin/internal/config"
- )
- // StartServers will start 3 HTTP servers. The WebUI, the Rest API, and a proxy
- // for both of them.
- func StartServers(cfg *config.Config) {
- go startWebUIServer(cfg)
- go startRestAPIServer(cfg)
- if cfg.UseSingleHTTPFrontend {
- StartSingleHTTPFrontend(cfg)
- }
- }
|