mirror of
https://github.com/Starlio-app/StarlioX
synced 2024-11-06 06:13:57 +03:00
7 lines
139 B
Go
7 lines
139 B
Go
package page
|
|
|
|
import "net/http"
|
|
|
|
func AboutHandler(w http.ResponseWriter, r *http.Request) {
|
|
http.ServeFile(w, r, "web/src/about.html")
|
|
}
|