mirror of
https://gitee.com/shikong-sk/gofiber-study
synced 2025-02-24 15:52:15 +08:00
8 lines
116 B
Go
8 lines
116 B
Go
package test
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func RegisterController(app *fiber.App) {
|
|
app.Group("/test")
|
|
}
|