go.mod 562 B

12345678910111213141516171819
  1. module github.com/langgenius/dify-plugin-daemon
  2. go 1.20
  3. require github.com/google/uuid v1.6.0
  4. require (
  5. github.com/joho/godotenv v1.5.1 // indirect
  6. github.com/kelseyhightower/envconfig v1.4.0 // indirect
  7. github.com/panjf2000/gnet/v2 v2.5.5 // indirect
  8. github.com/valyala/bytebufferpool v1.0.0 // indirect
  9. go.uber.org/atomic v1.11.0 // indirect
  10. go.uber.org/multierr v1.11.0 // indirect
  11. go.uber.org/zap v1.27.0 // indirect
  12. golang.org/x/sync v0.7.0 // indirect
  13. golang.org/x/sys v0.21.0 // indirect
  14. gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
  15. )