mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-06-18 01:29:37 +07:00
8 lines
156 B
Go
8 lines
156 B
Go
|
package keychains
|
||
|
|
||
|
type CreateKeychainSchema struct {
|
||
|
Type string `json:"type"`
|
||
|
Label string `json:"label"`
|
||
|
Data interface{} `json:"data"`
|
||
|
}
|