kon/pon/paths/paths.go

14 lines
218 B
Go
Raw Permalink Normal View History

2024-04-01 21:09:41 +02:00
package paths
import (
2024-04-01 22:04:54 +02:00
"kon/pon/paths/command"
2024-04-01 21:09:41 +02:00
"kon/pon/paths/status"
"github.com/gofiber/fiber/v2"
)
func Init(app *fiber.App) {
app.Get("/status", status.HandleFunc)
2024-04-01 22:04:54 +02:00
app.Get("/command", command.HandleFunc)
2024-04-01 21:09:41 +02:00
}