diff --git a/server/source/main.go b/server/source/main.go index f1100c6..90a5381 100755 --- a/server/source/main.go +++ b/server/source/main.go @@ -1,9 +1,15 @@ package main import ( - "data-interchange-server/source/network" + "fmt" + "net/http" ) +const port string = ":8080" + +var fileServer http.Handler = http.FileServer(http.Dir("./source")) + func main() { - network.ServeWebApplication() + fmt.Println("Serving on Port: 8080") + http.ListenAndServe(port, fileServer) }