15 lines
402 B
Go
15 lines
402 B
Go
package api
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func (am APIRouteManager) HandleApiKeysGetAll(c *fiber.Ctx) error {
|
|
return fiber.NewError(501, "Not Implemented")
|
|
}
|
|
|
|
func (am APIRouteManager) HandleApiKeysPost(c *fiber.Ctx) error {
|
|
return fiber.NewError(501, "Not Implemented")
|
|
}
|
|
|
|
func (am APIRouteManager) HandleApiKeysDelete(c *fiber.Ctx) error {
|
|
return fiber.NewError(501, "Not Implemented")
|
|
}
|