Update cli.go

This commit is contained in:
Daniel Hougaard
2024-02-29 07:12:18 +01:00
parent 1ad916a784
commit 48bf41ac8c

View File

@@ -20,6 +20,7 @@ type LoggedInUser struct {
Domain string `json:"domain"`
}
type SingleEnvironmentVariable struct {
Key string `json:"key"`
Value string `json:"value"`
@@ -34,6 +35,11 @@ type SingleEnvironmentVariable struct {
Comment string `json:"comment"`
}
type PlaintextSecretResult struct {
Secrets []SingleEnvironmentVariable
Hash string
}
type SingleFolder struct {
ID string `json:"_id"`
Name string `json:"name"`