3 files changed, 4 insertions(+), 13 deletions(-)
M go.mod
M go.sum
D web/templates/error.html
M go.mod => go.mod +2 -2
@@ 3,14 3,13 @@ module sourcecraft.dev/bigbes/sr-ht-compare
go 1.26.4
require (
- github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee
github.com/go-chi/chi/v5 v5.3.1
github.com/go-git/go-git/v5 v5.19.1
github.com/sirupsen/logrus v1.9.4
github.com/stretchr/testify v1.11.1
github.com/vaughan0/go-ini v0.0.0-20130923145212-a98ad7ee00ec
sourcecraft.dev/bigbes/sr-ht-core v0.0.0-20260718185800-dd418a200152
- sourcecraft.dev/bigbes/sr-ht-ecore v0.0.0-20260808143603-174115990895
+ sourcecraft.dev/bigbes/sr-ht-ecore v0.0.0-20260808192241-9377c43a02ca
)
require (
@@ 34,6 33,7 @@ require (
github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43 // indirect
github.com/emersion/go-smtp v0.21.3 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
+ github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee // indirect
github.com/go-chi/cors v1.2.2 // indirect
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
github.com/go-git/go-billy/v5 v5.9.0 // indirect
M go.sum => go.sum +2 -2
@@ 322,5 322,5 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
sourcecraft.dev/bigbes/sr-ht-core v0.0.0-20260718185800-dd418a200152 h1:9kQC+tDO2CO8avlKadb9Z0if4a6vJuEK80+4zcb6/fU=
sourcecraft.dev/bigbes/sr-ht-core v0.0.0-20260718185800-dd418a200152/go.mod h1:Mu1Vx39ws/OTKWGoVERXvkdRSPLBdhuFTYv0ftVV31c=
-sourcecraft.dev/bigbes/sr-ht-ecore v0.0.0-20260808143603-174115990895 h1:OGZrtBtMoXhyZGXrPqMzmrNQnStoCLBVuegGo7yF1Us=
-sourcecraft.dev/bigbes/sr-ht-ecore v0.0.0-20260808143603-174115990895/go.mod h1:KeoZjm+/nnsdtc1WxB7X/0EeC+Rggt2OkwJDEc6XWnw=
+sourcecraft.dev/bigbes/sr-ht-ecore v0.0.0-20260808192241-9377c43a02ca h1:LCfxvF1VJl7djl7noAeXObfuY1csJr2OOFExwU4Y/N4=
+sourcecraft.dev/bigbes/sr-ht-ecore v0.0.0-20260808192241-9377c43a02ca/go.mod h1:KeoZjm+/nnsdtc1WxB7X/0EeC+Rggt2OkwJDEc6XWnw=
D web/templates/error.html => web/templates/error.html +0 -9
@@ 1,9 0,0 @@
-{{define "content"}}
-<div class="row">
- <div class="col-md-12">
- <h2>{{.Data.Status}} — {{.Data.StatusText}}</h2>
- {{if .Data.Message}}<p class="text-muted">{{.Data.Message}}</p>{{end}}
- <p><a href="/">Return to the landing page</a>.</p>
- </div>
-</div>
-{{end}}