aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-23 18:23:38 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-23 18:23:38 +0800
commit1490622fb27fcd7f64346eccad59ccf6c55795a2 (patch)
tree7c5bb5abb23436a584e6e0cdc335032afea2f4c2
parentRename token -> identifier (diff)
downloadpowxy-1490622fb27fcd7f64346eccad59ccf6c55795a2.tar.gz
powxy-1490622fb27fcd7f64346eccad59ccf6c55795a2.tar.zst
powxy-1490622fb27fcd7f64346eccad59ccf6c55795a2.zip
Reformat
-rw-r--r--main.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/main.go b/main.go
index 3a69564..342138e 100644
--- a/main.go
+++ b/main.go
@@ -15,8 +15,8 @@ import (
type tparams struct {
Identifier string
- Message string
- Global any
+ Message string
+ Global any
}
func main() {
@@ -41,8 +41,8 @@ func main() {
authPage := func(message string) {
_ = tmpl.Execute(writer, tparams{
Identifier: base64.StdEncoding.EncodeToString(identifier),
- Message: message,
- Global: global,
+ Message: message,
+ Global: global,
})
}