[FEATURE] Very basic server updates

This commit is contained in:
Dunemask 2024-01-22 11:04:19 -07:00
parent 23efaafe1d
commit eb53e56dc7
16 changed files with 255 additions and 14 deletions

View file

@ -4,6 +4,8 @@ import {
deleteServer,
startServer,
stopServer,
getServer,
modifyServer,
} from "../controllers/lifecycle-controller.js";
import {
serverInstances,
@ -18,4 +20,6 @@ router.post("/start", startServer);
router.post("/stop", stopServer);
router.get("/list", serverList);
router.get("/instances", serverInstances);
router.post("/blueprint", getServer);
router.post("/modify", modifyServer);
export default router;