14 lines
187 B
Go
14 lines
187 B
Go
package routes
|
|
|
|
import (
|
|
"framework_v2/internal/app/facades"
|
|
)
|
|
|
|
func InitHttp() {
|
|
if facades.Router == nil {
|
|
panic("You must call InitGin() before InitHttp()")
|
|
}
|
|
|
|
InitApiRoutes()
|
|
}
|