daShangDao_planA/router/static.go

13 lines
374 B
Go

package router
import (
"net/http"
"planA/initialization/golabl"
)
// StaticInit 静态文件初始化
func StaticInit() {
golabl.Router.PathPrefix("/export/").Handler(http.StripPrefix("/export/", http.FileServer(http.Dir("./export"))))
golabl.Router.PathPrefix("/file/export/").Handler(http.StripPrefix("/file/export/", http.FileServer(http.Dir("./file/export"))))
}