Separated Scaling from Preparing

This commit is contained in:
rony5394
2026-02-23 17:23:54 +01:00
parent 9751a602cc
commit 0175847e89
5 changed files with 119 additions and 12 deletions

View File

@@ -52,6 +52,8 @@ func Run(){
}
http.HandleFunc("/services", listServices);
http.HandleFunc("/scale/up", scaleUp);
http.HandleFunc("/scale/down", scaleDown);
http.HandleFunc("/prepare", prepare);
http.HandleFunc("/cleanup", cleanup);