8 lines
156 B
Go
Raw Normal View History

2024-11-07 19:07:41 +00:00
package keychains
type CreateKeychainSchema struct {
Type string `json:"type"`
Label string `json:"label"`
Data interface{} `json:"data"`
}