sport_rec_demo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

15 lines
260 B

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")
}