@@ -0,0 +1,15 @@
package main
import (
"log"
"net/http"
)
func main() {
fs := http.FileServer(http.Dir("./dist"))
http.Handle("/", fs)
addr := ":8181"
log.Println("Server started on", addr)
log.Fatal(http.ListenAndServe(addr, nil))
}
The note is not visible to the blocked user.