7 lines
172 B
Go
7 lines
172 B
Go
|
package types
|
||
|
|
||
|
type Secret struct {
|
||
|
ID int32 `json:"id,omitempty" url:"id,omitempty"`
|
||
|
JwtSecret string `json:"jwt_secret,omitempty" url:"jwt_secret,omitempty"`
|
||
|
}
|