aboutsummaryrefslogtreecommitdiff
path: root/main.go
blob: b2761024c1dc65cf5695816a1858dfb6ecf1bb8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
Draft ykps.runxiyu.org backend just using the Go standard library
Copyright (C) 2024 Runxi Yu

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.
*/

package main

import (
	// "fmt"
	"html/template"
	"net/http"
)

func main() {
	/*
		changemeTemplate := template.Must(template.ParseFiles("changeme.html"))
		http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
			if r.Method != http.MethodPost {
				changemeTemplate.Execute(w, nil)
				return
			}
			// deal with form values
			_ = r.FormValue("test")
			changemeTemplate.Execute(w, struct{ Success bool }{true})
		})
	*/

	indexTemplate := template.Must(template.ParseFiles("index.html"))
	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
		indexTemplate.Execute(w, nil)
	})

	http.ListenAndServe(":8081", nil)
}