travis config fixed
1 file changed
tree: 82a2705898283a4164e7dc034777e1b31f19bd3d
  1. examples/
  2. .gitignore
  3. .travis.yml
  4. adapter.go
  5. adapter_test.go
  6. LICENSE
  7. README.md
README.md

casbin-minio-adapter

License: MIT Go Report Card Build Status Coverage Status Godoc

Casbin adapter implementation using Minio/AWS S3 policy storage

Installation

go get github.com/Soluto/casbin-minio-adapter

Usage

import (
    minioadapter "github.com/Soluto/casbin-minio-adapter"
    "github.com/casbin/casbin"
)

func main() {

    adapter, _ := minioadapter.NewAdapter("http://minio-endpoint", "accessKey", "secretKey", false, "casbin-bucker", "policy.csv")

    enforcer := casbin.NewSyncedEnforcer("rbac_model.conf", adapter)

}

Related pojects

Additional Usage Examples

For real-world example visit Tweek.

License

This project is under MIT License. See the LICENSE file for the full license text.