15 lines
234 B
Go
15 lines
234 B
Go
package api
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func HandleApiKeysGetAll(c *fiber.Ctx) error {
|
|
return nil
|
|
}
|
|
|
|
func HandleApiKeysPost(c *fiber.Ctx) error {
|
|
return nil
|
|
}
|
|
|
|
func HandleApiKeysDelete(c *fiber.Ctx) error {
|
|
return nil
|
|
}
|