2023-04-25 18:43:01 +02:00
|
|
|
package api
|
|
|
|
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
|
2024-09-30 13:19:01 +02:00
|
|
|
func (am APIRouteManager) HandleApiKeysGetAll(c *fiber.Ctx) error {
|
|
|
|
return fiber.NewError(501, "Not Implemented")
|
2023-04-25 18:43:01 +02:00
|
|
|
}
|
|
|
|
|
2024-09-30 13:19:01 +02:00
|
|
|
func (am APIRouteManager) HandleApiKeysPost(c *fiber.Ctx) error {
|
|
|
|
return fiber.NewError(501, "Not Implemented")
|
2023-04-25 18:43:01 +02:00
|
|
|
}
|
|
|
|
|
2024-09-30 13:19:01 +02:00
|
|
|
func (am APIRouteManager) HandleApiKeysDelete(c *fiber.Ctx) error {
|
|
|
|
return fiber.NewError(501, "Not Implemented")
|
2023-04-25 18:43:01 +02:00
|
|
|
}
|