all: go-import, clone url
Sun, 18 Dec 2022
7 files changed,
54 insertions(+),
9 deletions(-)
M
config.yaml
@@ -14,6 +14,10 @@ static: ./static
meta: title: git good description: i think it's a skill issue +misc: + goImport: + prettyURL: icyphox.sh server: + fqdn: git.icyphox.sh host: 127.0.0.1 port: 5555
M
config/config.go
@@ -21,7 +21,13 @@ Meta struct {
Title string `yaml:"title"` Description string `yaml:"description"` } `yaml:"meta"` + Misc struct { + GoImport struct { + PrettyURL string `yaml:"string"` + } `yaml:"goImport"` + } `yaml:"misc"` Server struct { + FQDN string `yaml:"fqdn,omitempty"`
… preview truncated
M
routes/routes.go
@@ -1,6 +1,7 @@
package routes import ( + "fmt" "html/template" "log" "net/http"@@ -112,6 +113,15 @@ log.Println(err)
return }
… preview truncated
… and 4 more changed files not shown in this preview