main.go 201 B

1234567891011121314
  1. package main
  2. import (
  3. "net/http"
  4. "os"
  5. )
  6. var wwwroot string
  7. func main() {
  8. wwwroot = os.Getenv("WWWROOT")
  9. http.Handle("/", http.FileServer(http.Dir(wwwroot)))
  10. http.ListenAndServe(":8080", nil)
  11. }