Files
hadrian/handlers/raw.go
2023-11-26 22:51:00 -06:00

10 lines
106 B
Go

package handlers
import (
"github.com/gofiber/fiber/v2"
)
func Raw(c *fiber.Ctx) error {
return nil
}