orm
orm copied to clipboard
Update documentation
In Readme we have:
err := orm.Initialize(orm.ConnectionConfig{
Driver: "sqlite3",
ConnectionString: ":memory:",
DatabaseValidations: true,
})
But this is the new way
err := orm.SetupConnections(orm.ConnectionConfig{
DB: ,
DatabaseValidations: true,
})