main.go 566 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package main
  2. import (
  3. "embed"
  4. "io/fs"
  5. "log"
  6. "net/http"
  7. )
  8. const development = true
  9. //go:embed www
  10. var embeddedFiles embed.FS
  11. var webfs http.FileSystem
  12. func init() {
  13. if development {
  14. webfs = http.Dir("./www")
  15. } else {
  16. // Embed the ./www folder and trim the prefix
  17. subFS, err := fs.Sub(embeddedFiles, "www")
  18. if err != nil {
  19. log.Fatal(err)
  20. }
  21. webfs = http.FS(subFS)
  22. }
  23. }
  24. func main() {
  25. http.Handle("/", http.FileServer(webfs))
  26. addr := ":8080"
  27. log.Printf("Serving on http://localhost%s\n", addr)
  28. log.Fatal(http.ListenAndServe(addr, nil))
  29. }