7 lines
96 B
Go
7 lines
96 B
Go
|
package abac
|
||
|
|
||
|
type Attribute struct {
|
||
|
Key string `json:"key"`
|
||
|
Value string `json:"value"`
|
||
|
}
|