mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 07:30:25 +00:00
17 lines
251 B
Go
17 lines
251 B
Go
// +build nobolt
|
|
|
|
package dataprovider
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/drakkan/sftpgo/version"
|
|
)
|
|
|
|
func init() {
|
|
version.AddFeature("-bolt")
|
|
}
|
|
|
|
func initializeBoltProvider(basePath string) error {
|
|
return errors.New("bolt disabled at build time")
|
|
}
|