From 7655a82ee0bff121aec08edcbaa3f799d34453b2 Mon Sep 17 00:00:00 2001 From: Mike Crute Date: Sat, 19 Aug 2023 22:17:45 -0700 Subject: Upgrade golib to remove empty templates --- Makefile | 2 +- go.mod | 2 +- go.sum | 4 ++-- templates/404.tpl | 0 templates/40x.tpl | 0 templates/50x.tpl | 0 templates/footer.tpl | 0 templates/header.tpl | 0 8 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 templates/404.tpl delete mode 100644 templates/40x.tpl delete mode 100644 templates/50x.tpl delete mode 100644 templates/footer.tpl delete mode 100644 templates/header.tpl diff --git a/Makefile b/Makefile index 339b5c8..b1dbc00 100644 --- a/Makefile +++ b/Makefile @@ -72,6 +72,6 @@ run-web: clean-server $(SERVER_BINARY) test -n "$(VAULT_SECRET_ID)" # Caller must also export VAULT_SECRET_ID VAULT_ADDR="https://vault.sea4.crute.me:8200" \ VAULT_SKIP_VERIFY=true \ - ./$(SERVER_BINARY) \ + ./$(SERVER_BINARY) --debug \ --hostname=dev.ssh-proxy.crute.me \ web diff --git a/go.mod b/go.mod index 1695536..ec9e7fc 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,7 @@ require ( code.crute.us/mcrute/golib/clients/autocert/v2 v2.2.0 code.crute.us/mcrute/golib/clients/netbox/v3 v3.2.0 code.crute.us/mcrute/golib/db/mongodb/v2 v2.1.0 - code.crute.us/mcrute/golib/echo v0.9.5 + code.crute.us/mcrute/golib/echo v0.11.0 code.crute.us/mcrute/golib/secrets v0.4.0 github.com/go-webauthn/webauthn v0.8.4 github.com/google/go-querystring v1.1.0 diff --git a/go.sum b/go.sum index d667573..101ebeb 100644 --- a/go.sum +++ b/go.sum @@ -44,8 +44,8 @@ code.crute.us/mcrute/golib/clients/netbox/v3 v3.2.0 h1:g3+vdaUeoVg+Qx++bGi2j2AVB code.crute.us/mcrute/golib/clients/netbox/v3 v3.2.0/go.mod h1:Wjh2iiFDkRuYN1TBgYrRpwT5Xp8i+2+TWJrbdG3JWWk= code.crute.us/mcrute/golib/db/mongodb/v2 v2.1.0 h1:Qw5g1R6vaJluHJoufNj+tjdLoHH0Z6TrNKDLK3h1hbE= code.crute.us/mcrute/golib/db/mongodb/v2 v2.1.0/go.mod h1:xoML+iNm/O3OgRJ5Uaie+SAEvczR/LrvCMsZm6MWiPI= -code.crute.us/mcrute/golib/echo v0.9.5 h1:CDhd/HPdhX8+CSqUhsJkUW8oeq+/r+Gff0eH4qUYn2c= -code.crute.us/mcrute/golib/echo v0.9.5/go.mod h1:/UJsAkrKnw7lqitb1Cst4dlcD+SNxT4zXjsDWJEGg0Y= +code.crute.us/mcrute/golib/echo v0.11.0 h1:uj7RFmu5grd7OMlJtbmwvhMldb17P1jFzVHYUhg+K0s= +code.crute.us/mcrute/golib/echo v0.11.0/go.mod h1:TAXUgWe4KapdCHPfJZtXLhs0PsAkMfL8ZrQQekFao0w= code.crute.us/mcrute/golib/secrets v0.4.0 h1:tZzQEOnJshDGuzvvr0n0BMWZbu3ZMB5QRqIDa4PwE3U= code.crute.us/mcrute/golib/secrets v0.4.0/go.mod h1:c40ezKg/NXe5NE3PaCRIUJC6D6XCoPSu9+duZSdKsNY= code.crute.us/mcrute/golib/vault v0.2.4 h1:lNc1hq26e/UAGBqxQlZiFffOXZSNEcEkKUzU3oRJ8Eg= diff --git a/templates/404.tpl b/templates/404.tpl deleted file mode 100644 index e69de29..0000000 diff --git a/templates/40x.tpl b/templates/40x.tpl deleted file mode 100644 index e69de29..0000000 diff --git a/templates/50x.tpl b/templates/50x.tpl deleted file mode 100644 index e69de29..0000000 diff --git a/templates/footer.tpl b/templates/footer.tpl deleted file mode 100644 index e69de29..0000000 diff --git a/templates/header.tpl b/templates/header.tpl deleted file mode 100644 index e69de29..0000000 -- cgit v1.2.3