diff options
author | 2022-11-26 19:59:15 +0100 | |
---|---|---|
committer | 2022-11-26 23:51:25 +0100 | |
commit | f4ce6ac1be7b2817a8e02fc0e517d93ff9890d2e (patch) | |
tree | 9474949eb2a2f21e5276a72bd3acdb499c37b5a5 /go.mod | |
parent | initial commit (diff) | |
download | cgit-httpd-f4ce6ac1be7b2817a8e02fc0e517d93ff9890d2e.tar.xz |
add initial version of cgit-httpd
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +module go.terinstock.com/cgit-httpd + +go 1.18 + +require ( + github.com/gorilla/mux v1.8.0 + github.com/rs/zerolog v1.28.0 + golang.org/x/sync v0.1.0 + olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3 + sigs.k8s.io/controller-runtime v0.13.1 +) + +require ( + github.com/mattn/go-colorable v0.1.12 // indirect + github.com/mattn/go-isatty v0.0.14 // indirect + golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect +) |