mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
- **docs: remove discord badge from README** - **fix: ensure go version is up-to-date** - **<no value>** - **refactor: update import paths for blocks to components** - **feat: add Hero component template** - **fix: update footer logo to svg** - **feat: add Query/Sign and Query/Verify RPC methods** - **refactor: rename Keyshares to KsVal in did/v1/state.proto**
21 lines
562 B
Go
21 lines
562 B
Go
// Code generated from Pkl module `models`. DO NOT EDIT.
|
|
package orm
|
|
|
|
type Grant struct {
|
|
Id uint `pkl:"id" json:"id,omitempty" query:"id"`
|
|
|
|
Subject string `pkl:"subject" json:"subject,omitempty"`
|
|
|
|
Controller string `pkl:"controller" json:"controller,omitempty"`
|
|
|
|
Origin string `pkl:"origin" json:"origin,omitempty"`
|
|
|
|
Token string `pkl:"token" json:"token,omitempty"`
|
|
|
|
Scopes []string `pkl:"scopes" json:"scopes,omitempty"`
|
|
|
|
CreatedAt *string `pkl:"createdAt" json:"createdAt,omitempty"`
|
|
|
|
UpdatedAt *string `pkl:"updatedAt" json:"updatedAt,omitempty"`
|
|
}
|