mirror of
https://github.com/XShengTech/MEGREZ.git
synced 2026-09-27 12:47:22 +00:00
15 lines
234 B
Go
15 lines
234 B
Go
package index
|
|
|
|
import (
|
|
"github.com/kataras/iris/v12"
|
|
)
|
|
|
|
func InitIndex(app *iris.Application) {
|
|
app.Use(cors)
|
|
app.HandleDir("/", GetWebFS(), iris.DirOptions{
|
|
IndexName: "/index.html",
|
|
Compress: true,
|
|
SPA: true,
|
|
})
|
|
}
|