12 lines
204 B
Go
12 lines
204 B
Go
|
package router
|
||
|
|
||
|
import (
|
||
|
"embed"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func SetRouter(router *gin.Engine, buildFS embed.FS, indexPage []byte) {
|
||
|
SetApiRouter(router)
|
||
|
setWebRouter(router, buildFS, indexPage)
|
||
|
}
|