go-urlsh/internal/web/link.go

8 lines
136 B
Go
Raw Normal View History

package web
import "github.com/gofiber/fiber/v2"
func HandleAdminLinkAddGet(c *fiber.Ctx) error {
return c.Render("add_link", nil)
}