Add initial code

This commit is contained in:
Jacob Gunther
2022-03-08 21:28:46 -06:00
commit b0518288da
33 changed files with 2175 additions and 0 deletions

19
go.mod Normal file
View File

@@ -0,0 +1,19 @@
module main
go 1.17
require (
github.com/buaazp/fasthttprouter v0.1.1
github.com/go-redis/redis/v8 v8.11.4
github.com/valyala/fasthttp v1.34.0
golang.org/x/image v0.0.0-20220302094943-723b81ca9867
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/klauspost/compress v1.15.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
)