package mainimport
import ( "net/http" )List
func main() { http.Handle("/", http.FileServer(http.Dir("/your_path"))) http.ListenAndServe(":9090", nil) } im