diff options
| author | Samuel W <samuel.wilhelmsson@gmail.com> | 2024-01-30 21:38:24 +0100 |
|---|---|---|
| committer | Samuel W <samuel.wilhelmsson@gmail.com> | 2024-01-30 21:38:24 +0100 |
| commit | 34f9aa54e2d67a54496606591c8ca5fcfef597f6 (patch) | |
| tree | d653dcf2e209fa9524455b26a5681578f13c0b90 /go.mod | |
| download | tinygram-34f9aa54e2d67a54496606591c8ca5fcfef597f6.tar.gz tinygram-34f9aa54e2d67a54496606591c8ca5fcfef597f6.zip | |
init commit
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -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 +) |
