16 lines
199 B
Go
Executable File
16 lines
199 B
Go
Executable File
package sqlite
|
|
|
|
const DefaultPrefix = "SQLite"
|
|
|
|
type Config struct {
|
|
File string
|
|
}
|
|
|
|
func (m *Config) CreateDatabaseSql() string {
|
|
return ""
|
|
}
|
|
|
|
func (m *Config) EmptyDsn() string {
|
|
return m.File
|
|
}
|