FileServer.go 173 B

1234567891011
  1. package main
  2. import (
  3. "log"
  4. "net/http"
  5. )
  6. func main() {
  7. // Simple static webserver:
  8. log.Fatal(http.ListenAndServe(":8080", http.FileServer(http.Dir("../Release/"))))
  9. }