Skip to content

Commit

Permalink
Merge pull request #23 from w-h-a/authz
Browse files Browse the repository at this point in the history
feat: add authz interface
  • Loading branch information
w-h-a committed Jun 19, 2024
2 parents 1bb30c4 + b4b2a03 commit 5e61454
Show file tree
Hide file tree
Showing 7 changed files with 896 additions and 12 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ proto-account:
proto-health:
protoc proto/health/*.proto --go_out=paths=source_relative:. --proto_path=.

.PHONY: proto-rule
proto-rule:
protoc proto/rule/*.proto --go_out=paths=source_relative:. --proto_path=.

.PHONY: proto-runtime
proto-runtime:
protoc proto/runtime/*.proto --go_out=paths=source_relative:. --proto_path=.
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

## Features

| Package | Choices | Use Case |
| ------------------- | ------------------------ | -------------------------- |
| api | http | build gateway servers |
| broker | nats | asynchronous communication |
| client | grpc | synchronous communication |
| runtime | kubernetes | service info |
| security/token | basic tokens, jwts | token providers |
| security/auth{n,z} | service | build auth{n,z} middleware |
| security/encryption | TBD | encryption |
| server | grpc | build backend servers |
| store | cockroach, redis, memory | data persistence |
| telemetry | memory | logs, metrics, and traces |
| Package | Choices | Use Case |
| ------------------- | ------------------ | -------------------------- |
| api | http | build gateway servers |
| broker | nats | asynchronous communication |
| client | grpc | synchronous communication |
| runtime | kubernetes | service info |
| security/token | basic tokens, jwts | token providers |
| security/auth{n,z} | ad hoc | build ad hoc middlewares |
| security/encryption | TBD | encryption |
| server | grpc | build backend servers |
| store | cockroach, redis | data persistence |
| telemetry | memory | logs, metrics, and traces |
Loading

0 comments on commit 5e61454

Please sign in to comment.