diff options
author | xengineering <me@xengineering.eu> | 2024-02-17 19:36:19 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-03 14:00:10 +0100 |
commit | 78116f571ad4801bd10c51077b50ec87f1f68be7 (patch) | |
tree | 4f860490e73376d9d0eb27b22c80bc83272255c8 /main.go | |
parent | e105822a4f2227ca97853ac1bf106f8d204d6837 (diff) | |
download | ceres-78116f571ad4801bd10c51077b50ec87f1f68be7.tar ceres-78116f571ad4801bd10c51077b50ec87f1f68be7.tar.zst ceres-78116f571ad4801bd10c51077b50ec87f1f68be7.zip |
view: Send forms as JSON with JavaScript
While forms can be send without JavaScript this new approach has the
benefit that the whole data is send as one JSON.
This JSON format can also be used for an API or testing.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ func main() { log.Printf("Cleaning up due to OS signal '%v'\n", sig) } -//go:embed view/static/simple.css/simple.css +//go:embed view/static/simple.css/simple.css view/static/ceres.js var static embed.FS func startServer(addr string) *http.Server { |