Skip to content

Commit 09e2083

Browse files
committed
changed fileserver location
1 parent 2e3d21d commit 09e2083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/web/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
func Main(pathToFmiFile string, port string) {
1515
graph := helpers2.CreateGraphFromFile(pathToFmiFile)
1616

17-
fileServer := http.FileServer(http.Dir("web/static"))
17+
fileServer := http.FileServer(http.Dir("./src/web/static"))
1818
http.Handle("/", fileServer)
1919
http.HandleFunc("/route", routeHandler(graph))
2020
http.HandleFunc("/point", pointHandler(graph))

0 commit comments

Comments
 (0)