mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-21 07:49:34 +01:00
11 lines
176 B
Go
11 lines
176 B
Go
package factory
|
|
|
|
import (
|
|
"github.com/ansible-semaphore/semaphore/db"
|
|
"github.com/ansible-semaphore/semaphore/db/sql"
|
|
)
|
|
|
|
func CreateStore() db.Store {
|
|
return &sql.SqlDb{}
|
|
}
|