framework_v2/internal/app/server/http.go
2024-06-16 00:55:25 +08:00

15 lines
226 B
Go

package server
import (
"framework_v2/internal/app/facades"
"framework_v2/internal/routes"
)
func InitHttp() {
if facades.Router == nil {
panic("You must call InitGin() before InitHttp()")
}
routes.InitApiRoutes()
}