mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-26 11:28:46 +08:00
16 lines
221 B
Go
16 lines
221 B
Go
|
package sqltemplate
|
||
|
|
||
|
var Imports = `
|
||
|
import (
|
||
|
{{if .containsCache}}"database/sql"
|
||
|
"fmt"{{end}}
|
||
|
"strings"
|
||
|
"time"
|
||
|
|
||
|
"zero/core/stores/cache"
|
||
|
"zero/core/stores/sqlc"
|
||
|
"zero/core/stores/sqlx"
|
||
|
"zero/core/stringx"
|
||
|
)
|
||
|
`
|