/casbin-minio-adapter

Casbin adapter implementation for Minio/AWS S3 storage

Primary LanguageGoMIT LicenseMIT

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.