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