mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +07:00
13 lines
237 B
Go
13 lines
237 B
Go
package keychains
|
|
|
|
type CreateKeychainSchema struct {
|
|
TeamID *string `json:"teamId"`
|
|
Type string `json:"type"`
|
|
Label string `json:"label"`
|
|
Data interface{} `json:"data"`
|
|
}
|
|
|
|
type GetAllOpt struct {
|
|
TeamID string
|
|
}
|