12 lines
220 B
Go
12 lines
220 B
Go
package controllers
|
|
|
|
import (
|
|
"git.secnex.io/secnex/auth-api/services"
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func CreateApiKeyController(c *fiber.Ctx) error {
|
|
response := services.CreateApiKey()
|
|
return response.Send(c)
|
|
}
|