mirror of
https://github.com/Starlio-app/StarlioX
synced 2024-11-06 06:13:57 +03:00
8 lines
139 B
Go
8 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")
|
||
|
}
|