import.go 615 B

12345678910111213141516171819202122232425262728
  1. package template
  2. var (
  3. Imports = `import (
  4. "database/sql"
  5. "fmt"
  6. "strings"
  7. "time"
  8. "github.com/tal-tech/go-zero/core/stores/cache"
  9. "github.com/tal-tech/go-zero/core/stores/sqlc"
  10. "github.com/tal-tech/go-zero/core/stores/sqlx"
  11. "github.com/tal-tech/go-zero/core/stringx"
  12. "github.com/tal-tech/go-zero/tools/goctl/model/sql/builderx"
  13. )
  14. `
  15. ImportsNoCache = `import (
  16. "database/sql"
  17. "strings"
  18. "time"
  19. "github.com/tal-tech/go-zero/core/stores/sqlc"
  20. "github.com/tal-tech/go-zero/core/stores/sqlx"
  21. "github.com/tal-tech/go-zero/core/stringx"
  22. "github.com/tal-tech/go-zero/tools/goctl/model/sql/builderx"
  23. )
  24. `
  25. )