Files
Курнат Андрей 2315f25754 Initial QSfera import
2026-06-07 10:20:04 +03:00

40 lines
800 B
Go

package wrapper
import (
"fmt"
"net/http"
"ocwrapper/common"
"ocwrapper/log"
"ocwrapper/qsfera/config"
"ocwrapper/wrapper/handlers"
)
func Start(port string) {
defer common.Wg.Done()
if port == "" {
port = config.Get("port")
}
httpServer := &http.Server{
Addr: ":" + port,
}
var mux = http.NewServeMux()
mux.HandleFunc("/", http.NotFound)
mux.HandleFunc("/config", handlers.SetEnvHandler)
mux.HandleFunc("/rollback", handlers.RollbackHandler)
mux.HandleFunc("/command", handlers.CommandHandler)
mux.HandleFunc("/stop", handlers.StopQsferaHandler)
mux.HandleFunc("/start", handlers.StartQsferaHandler)
httpServer.Handler = mux
log.Println(fmt.Sprintf("Starting ocwrapper on port %s...", port))
err := httpServer.ListenAndServe()
if err != nil {
log.Panic(err)
}
}