diff --git a/README.md b/README.md index f8fc3ea..854a394 100755 --- a/README.md +++ b/README.md @@ -53,16 +53,6 @@ git clone dart pub upgrade -dart compile js -``` - -OR - -```shell -git clone - -dart pub upgrade - dart run build_runner build dart run build_runner serve diff --git a/lib/index.html b/lib/index.html index 82635b4..1968a97 100755 --- a/lib/index.html +++ b/lib/index.html @@ -11,9 +11,9 @@
- +

diff --git a/server/source/main.go b/server/source/main.go index 2d61785..1a55873 100755 --- a/server/source/main.go +++ b/server/source/main.go @@ -5,9 +5,11 @@ import ( "net/http" ) +const port string = ":8080" + +var fileServer http.Handler = http.FileServer(http.Dir("./lib")) + func main() { - const port string = ":8080" - var fileServer http.Handler = http.FileServer(http.Dir("./lib")) fmt.Println("Serving on Port: 8080") http.ListenAndServe(port, fileServer) }