import.go 313 B

123456789101112131415
  1. package sqltemplate
  2. var Imports = `
  3. import (
  4. {{if .containsCache}}"database/sql"
  5. "fmt"{{end}}
  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. )
  13. `