14 lines
205 B
Go
14 lines
205 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
fs := http.FileServer(http.Dir("public"))
|
|
http.Handle("/", fs)
|
|
|
|
log.Println("Starting the web server...")
|
|
http.ListenAndServe(":3000", nil)
|
|
}
|