static.go 123 B

123456789
  1. package fiber
  2. import (
  3. "github.com/gofiber/fiber/v2"
  4. )
  5. func initStatic(app *fiber.App) {
  6. app.Static("/", staticPath)
  7. }