mirror of
https://github.com/Luzifer/sii.git
synced 2024-12-21 08:21:16 +00:00
15 lines
361 B
Go
15 lines
361 B
Go
|
package main
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
func init() {
|
||
|
router.HandleFunc("/", handleIndexPage).Methods(http.MethodGet)
|
||
|
router.PathPrefix("/asset/").Handler(
|
||
|
http.StripPrefix("/asset/", http.FileServer(http.Dir("frontend"))),
|
||
|
).Methods(http.MethodGet)
|
||
|
}
|
||
|
|
||
|
func handleIndexPage(w http.ResponseWriter, r *http.Request) {
|
||
|
http.ServeFile(w, r, "frontend/index.html")
|
||
|
}
|