mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
15 lines
264 B
Go
15 lines
264 B
Go
package model
|
|
|
|
type ServiceAccountDetails struct {
|
|
AccessKey string
|
|
PublicKey string
|
|
PrivateKey string
|
|
}
|
|
|
|
type SingleEnvironmentVariable struct {
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
Type string `json:"type"`
|
|
ID string `json:"_id"`
|
|
}
|