├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── auth_model.conf ├── authorization └── authorization.go ├── casbin-http-role-example ├── main.go ├── model └── model.go └── policy.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/.gitignore -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/README.md -------------------------------------------------------------------------------- /auth_model.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/auth_model.conf -------------------------------------------------------------------------------- /authorization/authorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/authorization/authorization.go -------------------------------------------------------------------------------- /casbin-http-role-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/casbin-http-role-example -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/main.go -------------------------------------------------------------------------------- /model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/model/model.go -------------------------------------------------------------------------------- /policy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zupzup/casbin-http-role-example/HEAD/policy.csv --------------------------------------------------------------------------------