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