3
0
corteza/app/store.go
2020-09-08 07:54:23 +02:00

10 lines
225 B
Go

package app
// Registers all supported store backends
//
// SQLite is intentionally ignored here
import (
_ "github.com/cortezaproject/corteza-server/store/mysql"
_ "github.com/cortezaproject/corteza-server/store/pgsql"
)