10 lines
116 B
Go
10 lines
116 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
http.ListenAndServe(`:8002`, http.FileServer(http.Dir(`.`)))
|
|
}
|