Semaphore/db/factory/store.go

26 lines
573 B
Go
Raw Normal View History

package factory
import (
"github.com/semaphoreui/semaphore/db"
"github.com/semaphoreui/semaphore/db/bolt"
"github.com/semaphoreui/semaphore/db/sql"
"github.com/semaphoreui/semaphore/util"
)
func CreateStore() db.Store {
config, err := util.Config.GetDBConfig()
if err != nil {
panic("Can not read configuration")
}
switch config.Dialect {
case util.DbDriverMySQL:
return &sql.SqlDb{}
case util.DbDriverBolt:
return &bolt.BoltDb{}
2021-08-24 12:51:21 +02:00
case util.DbDriverPostgres:
return &sql.SqlDb{}
default:
2021-08-28 18:24:54 +02:00
panic("Unsupported database dialect: " + config.Dialect)
}
}