Last active
August 17, 2024 03:13
-
-
Save sawirricardo/eafea7e47d72698430ecf368bad5ed1e to your computer and use it in GitHub Desktop.
go almost must use libraries
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
go get -u github.com/joho/godotenv; | |
go get -u github.com/a-h/templ; | |
go get -u github.com/manifoldco/promptui; | |
go get -u github.com/go-chi/chi/v5; | |
go get -u gopkg.in/gomail.v2; | |
go get -u github.com/amacneil/dbmate/v2/pkg/driver/postgres; | |
go get -u github.com/jackc/pgx/v5/pgxpool; | |
go get -u github.com/gorilla/sessions; | |
go get -u github.com/gorilla/csrf; | |
go get -u github.com/google/uuid; | |
go get -u golang.org/x/crypto; | |
go get -u golang.org/x/exp; | |
go get -u github.com/go-playground/validator/v10; | |
// ignore this | |
go get -u github.com/golang-module/carbon/v2; | |
go get -u github.com/rotisserie/eris; | |
go get -u github.com/spf13/cast; | |
go get -u github.com/spf13/viper; | |
go get -u github.com/joho/godotenv; | |
go get -u github.com/urfave/cli/v2; | |
go get -u github.com/manifoldco/promptui; | |
go get -u github.com/a-h/templ; | |
go get -u gorm.io/gorm; | |
go get -u gorm.io/driver/postgres; | |
go get -u github.com/gin-gonic/gin; | |
go get -u github.com/go-chi/chi/v5; | |
go get -u github.com/gabriel-vasile/mimetype; | |
go get -u github.com/google/uuid; | |
go get -u github.com/sirupsen/logrus; | |
go get -u golang.org/x/crypto; | |
go get -u go.uber.org/atomic@v1; | |
go get -u github.com/stretchr/testify; | |
go get -u github.com/robfig/cron/[email protected]; | |
go get -u github.com/go-ozzo/ozzo-validation; | |
go get -u github.com/fatih/color; | |
go get -u github.com/davecgh/go-spew/spew; | |
go get -u github.com/golang-migrate/migrate/v4; | |
go get -u github.com/golang-jwt/jwt/v5; | |
go get -u github.com/disintegration/imaging; | |
go get -u github.com/ganigeorgiev/fexpr; | |
go get -u github.com/goccy/go-json; | |
go get -u gopkg.in/gomail.v2; | |
go get -u github.com/samber/slog-multi; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment