summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2023-08-19 22:17:45 -0700
committerMike Crute <mike@crute.us>2023-08-19 22:17:45 -0700
commit7655a82ee0bff121aec08edcbaa3f799d34453b2 (patch)
treee99cf23b753eb0f71ae666c1081ca49fe3718907
parent267ee2d8a78fa7425af765eb583cab3248995a31 (diff)
downloadwebsocket_proxy-7655a82ee0bff121aec08edcbaa3f799d34453b2.tar.bz2
websocket_proxy-7655a82ee0bff121aec08edcbaa3f799d34453b2.tar.xz
websocket_proxy-7655a82ee0bff121aec08edcbaa3f799d34453b2.zip
Upgrade golib to remove empty templates
-rw-r--r--Makefile2
-rw-r--r--go.mod2
-rw-r--r--go.sum4
-rw-r--r--templates/404.tpl0
-rw-r--r--templates/40x.tpl0
-rw-r--r--templates/50x.tpl0
-rw-r--r--templates/footer.tpl0
-rw-r--r--templates/header.tpl0
8 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 339b5c8..b1dbc00 100644
--- a/Makefile
+++ b/Makefile
@@ -72,6 +72,6 @@ run-web: clean-server $(SERVER_BINARY)
72 test -n "$(VAULT_SECRET_ID)" # Caller must also export VAULT_SECRET_ID 72 test -n "$(VAULT_SECRET_ID)" # Caller must also export VAULT_SECRET_ID
73 VAULT_ADDR="https://vault.sea4.crute.me:8200" \ 73 VAULT_ADDR="https://vault.sea4.crute.me:8200" \
74 VAULT_SKIP_VERIFY=true \ 74 VAULT_SKIP_VERIFY=true \
75 ./$(SERVER_BINARY) \ 75 ./$(SERVER_BINARY) --debug \
76 --hostname=dev.ssh-proxy.crute.me \ 76 --hostname=dev.ssh-proxy.crute.me \
77 web 77 web
diff --git a/go.mod b/go.mod
index 1695536..ec9e7fc 100644
--- a/go.mod
+++ b/go.mod
@@ -8,7 +8,7 @@ require (
8 code.crute.us/mcrute/golib/clients/autocert/v2 v2.2.0 8 code.crute.us/mcrute/golib/clients/autocert/v2 v2.2.0
9 code.crute.us/mcrute/golib/clients/netbox/v3 v3.2.0 9 code.crute.us/mcrute/golib/clients/netbox/v3 v3.2.0
10 code.crute.us/mcrute/golib/db/mongodb/v2 v2.1.0 10 code.crute.us/mcrute/golib/db/mongodb/v2 v2.1.0
11 code.crute.us/mcrute/golib/echo v0.9.5 11 code.crute.us/mcrute/golib/echo v0.11.0
12 code.crute.us/mcrute/golib/secrets v0.4.0 12 code.crute.us/mcrute/golib/secrets v0.4.0
13 github.com/go-webauthn/webauthn v0.8.4 13 github.com/go-webauthn/webauthn v0.8.4
14 github.com/google/go-querystring v1.1.0 14 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
44code.crute.us/mcrute/golib/clients/netbox/v3 v3.2.0/go.mod h1:Wjh2iiFDkRuYN1TBgYrRpwT5Xp8i+2+TWJrbdG3JWWk= 44code.crute.us/mcrute/golib/clients/netbox/v3 v3.2.0/go.mod h1:Wjh2iiFDkRuYN1TBgYrRpwT5Xp8i+2+TWJrbdG3JWWk=
45code.crute.us/mcrute/golib/db/mongodb/v2 v2.1.0 h1:Qw5g1R6vaJluHJoufNj+tjdLoHH0Z6TrNKDLK3h1hbE= 45code.crute.us/mcrute/golib/db/mongodb/v2 v2.1.0 h1:Qw5g1R6vaJluHJoufNj+tjdLoHH0Z6TrNKDLK3h1hbE=
46code.crute.us/mcrute/golib/db/mongodb/v2 v2.1.0/go.mod h1:xoML+iNm/O3OgRJ5Uaie+SAEvczR/LrvCMsZm6MWiPI= 46code.crute.us/mcrute/golib/db/mongodb/v2 v2.1.0/go.mod h1:xoML+iNm/O3OgRJ5Uaie+SAEvczR/LrvCMsZm6MWiPI=
47code.crute.us/mcrute/golib/echo v0.9.5 h1:CDhd/HPdhX8+CSqUhsJkUW8oeq+/r+Gff0eH4qUYn2c= 47code.crute.us/mcrute/golib/echo v0.11.0 h1:uj7RFmu5grd7OMlJtbmwvhMldb17P1jFzVHYUhg+K0s=
48code.crute.us/mcrute/golib/echo v0.9.5/go.mod h1:/UJsAkrKnw7lqitb1Cst4dlcD+SNxT4zXjsDWJEGg0Y= 48code.crute.us/mcrute/golib/echo v0.11.0/go.mod h1:TAXUgWe4KapdCHPfJZtXLhs0PsAkMfL8ZrQQekFao0w=
49code.crute.us/mcrute/golib/secrets v0.4.0 h1:tZzQEOnJshDGuzvvr0n0BMWZbu3ZMB5QRqIDa4PwE3U= 49code.crute.us/mcrute/golib/secrets v0.4.0 h1:tZzQEOnJshDGuzvvr0n0BMWZbu3ZMB5QRqIDa4PwE3U=
50code.crute.us/mcrute/golib/secrets v0.4.0/go.mod h1:c40ezKg/NXe5NE3PaCRIUJC6D6XCoPSu9+duZSdKsNY= 50code.crute.us/mcrute/golib/secrets v0.4.0/go.mod h1:c40ezKg/NXe5NE3PaCRIUJC6D6XCoPSu9+duZSdKsNY=
51code.crute.us/mcrute/golib/vault v0.2.4 h1:lNc1hq26e/UAGBqxQlZiFffOXZSNEcEkKUzU3oRJ8Eg= 51code.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
--- a/templates/404.tpl
+++ /dev/null
diff --git a/templates/40x.tpl b/templates/40x.tpl
deleted file mode 100644
index e69de29..0000000
--- a/templates/40x.tpl
+++ /dev/null
diff --git a/templates/50x.tpl b/templates/50x.tpl
deleted file mode 100644
index e69de29..0000000
--- a/templates/50x.tpl
+++ /dev/null
diff --git a/templates/footer.tpl b/templates/footer.tpl
deleted file mode 100644
index e69de29..0000000
--- a/templates/footer.tpl
+++ /dev/null
diff --git a/templates/header.tpl b/templates/header.tpl
deleted file mode 100644
index e69de29..0000000
--- a/templates/header.tpl
+++ /dev/null