First prototype

This commit is contained in:
akp 2023-08-02 21:46:04 +01:00
commit c145f66d3f
No known key found for this signature in database
GPG key ID: CF8D58F3DEB20755
16 changed files with 517 additions and 0 deletions

17
go.mod Normal file
View file

@ -0,0 +1,17 @@
module github.com/codemicro/palmatum
go 1.20
require (
github.com/pkg/errors v0.9.1
github.com/rs/zerolog v1.30.0
)
require (
github.com/julienschmidt/httprouter v1.3.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
golang.org/x/exp v0.0.0-20230801115018-d63ba01acd4b // indirect
golang.org/x/sys v0.1.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)