We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e3d21d commit 09e2083Copy full SHA for 09e2083
src/web/server.go
@@ -14,7 +14,7 @@ import (
14
func Main(pathToFmiFile string, port string) {
15
graph := helpers2.CreateGraphFromFile(pathToFmiFile)
16
17
- fileServer := http.FileServer(http.Dir("web/static"))
+ fileServer := http.FileServer(http.Dir("./src/web/static"))
18
http.Handle("/", fileServer)
19
http.HandleFunc("/route", routeHandler(graph))
20
http.HandleFunc("/point", pointHandler(graph))
0 commit comments