Files
old-svijetlastrana/data/data.go

12 lines
283 B
Go
Raw Permalink Normal View History

2018-04-25 13:16:36 +02:00
package data
import (
"bitbucket.org/nemt/nemt-portal-api/data/datamysql"
"bitbucket.org/nemt/nemt-portal-api/domain/contract"
"bitbucket.org/nemt/nemt-portal-api/infra/config"
)
func Connect(cfg *config.Config) (contract.DataManager, error) {
return datamysql.Instance(cfg)
}