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