15 lines
205 B
Go
15 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)
|
||
|
}
|