mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-12-06 14:20:55 +03:00
18 lines
245 B
Go
18 lines
245 B
Go
// +build nopgsql
|
|
|
|
package dataprovider
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/drakkan/sftpgo/version"
|
|
)
|
|
|
|
func init() {
|
|
version.AddFeature("-pgsql")
|
|
}
|
|
|
|
func initializePGSQLProvider() error {
|
|
return errors.New("PostgreSQL disabled at build time")
|
|
}
|