Files
meet-front/main.go
Smile Rex b272ed8044
All checks were successful
Create and publish a Docker image 🚀 / build-and-push-image (push) Successful in 1m19s
fix
2026-01-26 19:06:15 +03:00

16 lines
228 B
Go

package main
import (
"log"
"net/http"
)
func main() {
fs := http.FileServer(http.Dir("./build"))
http.Handle("/", fs)
addr := ":3000"
log.Println("Server started on", addr)
log.Fatal(http.ListenAndServe(addr, nil))
}