blob: c809f0c197fa368ed0ae03de750e63c4411b061c (
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
|
// SPDX-License-Identifier: BSD-2-Clause
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
package main
import (
_ "embed"
"log"
"text/template"
)
//go:embed challenge.html
var tmplString string
var tmpl *template.Template
// This init function parses the HTML template.
func init() {
var err error
tmpl, err = template.New("powxy").Parse(tmplString)
if err != nil {
log.Fatal(err)
}
}
|