From 34f9aa54e2d67a54496606591c8ca5fcfef597f6 Mon Sep 17 00:00:00 2001 From: Samuel W Date: Tue, 30 Jan 2024 21:38:24 +0100 Subject: init commit --- go.mod | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 go.mod (limited to 'go.mod') diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..8d63791 --- /dev/null +++ b/go.mod @@ -0,0 +1,28 @@ +module tinygram + +go 1.21.6 + +require ( + github.com/a-h/templ v0.2.513 + github.com/labstack/echo/v4 v4.11.4 + gorm.io/gorm v1.25.2-0.20230530020048-26663ab9bf55 +) + +require ( + github.com/jinzhu/inflection v1.0.0 // indirect + github.com/jinzhu/now v1.1.5 // indirect + github.com/mattn/go-sqlite3 v1.14.17 // indirect +) + +require ( + github.com/labstack/gommon v0.4.2 // indirect + github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/valyala/bytebufferpool v1.0.0 // indirect + github.com/valyala/fasttemplate v1.2.2 // indirect + golang.org/x/crypto v0.17.0 // indirect + golang.org/x/net v0.19.0 // indirect + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.14.0 // indirect + gorm.io/driver/sqlite v1.5.4 +) -- cgit v1.2.3