go.mod 746 B

12345678910111213141516171819202122232425
  1. module crm-api
  2. go 1.16
  3. require (
  4. github.com/BurntSushi/toml v1.4.0 // indirect
  5. github.com/gin-contrib/gzip v0.0.5
  6. github.com/gin-gonic/gin v1.9.0
  7. github.com/go-redis/redis/v8 v8.11.5
  8. github.com/go-sql-driver/mysql v1.6.0
  9. github.com/gofrs/uuid v4.0.0+incompatible
  10. github.com/googollee/go-socket.io v1.4.5
  11. github.com/kardianos/service v1.2.0
  12. github.com/mitchellh/mapstructure v1.4.1
  13. github.com/sirupsen/logrus v1.9.3
  14. github.com/smartystreets/goconvey v1.6.4 // indirect
  15. github.com/tqcenglish/amigo-go v1.1.15
  16. github.com/ugorji/go v1.2.7 // indirect
  17. github.com/urfave/cli v1.20.0
  18. golang.org/x/text v0.19.0 // indirect
  19. gopkg.in/ini.v1 v1.61.0
  20. gopkg.in/natefinch/lumberjack.v2 v2.0.0
  21. gopkg.in/yaml.v2 v2.4.0
  22. xorm.io/xorm v1.0.7
  23. )