friends-best/server/main.go
Louis Hollingworth f439090fa2
Restored lost files and now serving from Go
Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
2024-02-14 18:39:12 +00:00

18 lines
337 B
Go

package main
import (
"github.com/gorilla/mux"
"net/http"
log "github.com/sirupsen/logrus"
)
func main() {
r := mux.NewRouter()
r.PathPrefix("/").Handler(http.FileServer(http.Dir("./dist")))
if err := http.ListenAndServe(":3000", r); err != nil {
log.Fatalf("failed to start server: %v", err)
}
}