mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-21 23:20:24 +00:00
18 lines
279 B
Go
18 lines
279 B
Go
//go:build nosqlite
|
|
// +build nosqlite
|
|
|
|
package dataprovider
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/drakkan/sftpgo/version"
|
|
)
|
|
|
|
func init() {
|
|
version.AddFeature("-sqlite")
|
|
}
|
|
|
|
func initializeSQLiteProvider(basePath string) error {
|
|
return errors.New("SQLite disabled at build time")
|
|
}
|