package main import ( "net/http" ) func main() { http.Handle( "/assets/", http.StripPrefix("/assets/", http.FileServer(http.Dir("e:/"))), ) http.ListenAndServe(":8080", nil) }
时间: 2024-10-26 22:49:37
package main import ( "net/http" ) func main() { http.Handle( "/assets/", http.StripPrefix("/assets/", http.FileServer(http.Dir("e:/"))), ) http.ListenAndServe(":8080", nil) }