package main import( "net/http" ) func main(){ http.Handle("/", http.FileServer(http.Dir("D:/web/AmazeUI-2.7.2/"))) http.ListenAndServe(":8080", nil) }