Based on GF ORM, and tested in:
- MySQL
- PostgreSQL
go get github.com/vance-liu/gdb-adapter
opts := &Adapter{
DriverName: "mysql",
DataSourceName: "root:1234@tcp(127.0.0.1:3306)/casbin",
TableName: "casbin_rule",
// or reuse an existing connection:
// Db: yourDBConn,
}
a := NewAdapterFromOptions(opts)
e := casbin.NewEnforcer("examples/rbac_model.conf", a)
you should create the database on your own.
This project is under Apache 2.0 License. See the LICENSE file for the full license text.