diff options
author | Alan Pearce | 2024-05-02 23:18:19 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-02 23:20:30 +0200 |
commit | 73603079e29bc89c54296a9e12b5a779cd84c023 (patch) | |
tree | 3e5d0c0c87b81a007667fc4b533cb9403675a422 /go.mod | |
parent | 7ad48953a4d9470d2f4fe89343c0b09bff410c58 (diff) | |
download | searchix-73603079e29bc89c54296a9e12b5a779cd84c023.tar.lz searchix-73603079e29bc89c54296a9e12b5a779cd84c023.tar.zst searchix-73603079e29bc89c54296a9e12b5a779cd84c023.zip |
feat: serve a very basic html template
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/go.mod b/go.mod index dcd2a6c..ac4a28b 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,19 @@ module searchix go 1.22.2 + +require ( + github.com/ardanlabs/conf/v3 v3.1.7 + github.com/crewjam/csp v0.0.2 + github.com/getsentry/sentry-go v0.27.0 + github.com/osdevisnot/sorvor v0.4.4 + github.com/pelletier/go-toml/v2 v2.2.1 + github.com/pkg/errors v0.9.1 + github.com/shengyanli1982/law v0.1.15 +) + +require ( + github.com/google/go-cmp v0.6.0 // indirect + golang.org/x/sys v0.19.0 // indirect + golang.org/x/text v0.14.0 // indirect +) |