package main
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func setScene(c *fiber.Ctx) error {
|
|
return c.SendString("OK")
|
|
}
|
|
|
|
func stopScene(c *fiber.Ctx) error {
|
|
return c.SendString("OK")
|
|
}
|
|
|
|
func getStatus(c *fiber.Ctx) error {
|
|
return c.SendString("OK")
|
|
}
|