Source file src/cmd/link/testdata/dwarf/issue65405/main.go

     1  package main
     2  
     3  import "net/http"
     4  
     5  func main() {
     6  	http.Handle("/", http.StripPrefix("/static/", http.FileServer(http.Dir("./output"))))
     7  	http.ListenAndServe(":8000", nil)
     8  }
     9  

View as plain text