add configurable name
All checks were successful
Release / publish (push) Successful in 5m27s

This commit is contained in:
2025-07-08 11:57:16 +02:00
parent 30dac9f12f
commit 68574ad289
12 changed files with 461 additions and 31 deletions

View File

@@ -0,0 +1,10 @@
package config
import (
"encoding/json"
"net/http"
)
func (c *Config) Handle(w http.ResponseWriter, r *http.Request) {
json.NewEncoder(w).Encode(c.Web)
}