StarlioX/web/pages/about.go

8 lines
139 B
Go
Raw Normal View History

2022-09-18 19:28:19 +03:00
package page
import "net/http"
func AboutHandler(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "web/src/about.html")
}