#89: First implementation of longer result history
This commit is contained in:
8
controller/spa.go
Normal file
8
controller/spa.go
Normal file
@ -0,0 +1,8 @@
|
||||
package controller
|
||||
|
||||
import "net/http"
|
||||
|
||||
// spaHandler handles requests for /
|
||||
func spaHandler(writer http.ResponseWriter, request *http.Request) {
|
||||
http.ServeFile(writer, request, staticFolder+"/index.html")
|
||||
}
|
Reference in New Issue
Block a user