package paths import ( "kon/pon/paths/command" "kon/pon/paths/status" "github.com/gofiber/fiber/v2" ) func Init(app *fiber.App) { app.Get("/status", status.HandleFunc) app.Get("/command", command.HandleFunc) }