Files
meet-front/main.go
Smile Rex 179961f5c0
Some checks failed
Create and publish a Docker image 🚀 / build-and-push-image (push) Has been cancelled
try go server
2026-01-26 17:34:52 +03:00

16 lines
227 B
Go

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))
}