mirror of
https://github.com/Luzifer/sii.git
synced 2024-12-21 00:21:15 +00:00
14 lines
361 B
Go
14 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")
|
|
}
|