14 lines
218 B
Go
14 lines
218 B
Go
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)
|
|
}
|