2023-11-13 00:24:05 +07:00

17 lines
231 B
Go

package handlers
import (
"github.com/gofiber/fiber/v2"
)
type rootHandler struct {
}
func (h *rootHandler) Register(app *fiber.App) {
app.Static("/", "static")
}
func newRootHandler() *rootHandler {
return &rootHandler{}
}