import.go 607 B

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