mirror of
https://github.com/foomo/posh-providers.git
synced 2025-10-16 12:35:41 +00:00
12 lines
258 B
Go
12 lines
258 B
Go
package gcloud
|
|
|
|
import (
|
|
"github.com/foomo/posh-providers/onepassword"
|
|
)
|
|
|
|
type Account struct {
|
|
Name string `json:"name" yaml:"name"`
|
|
Email string `json:"email" yaml:"email"`
|
|
Key *onepassword.Secret `json:"key" yaml:"key"`
|
|
}
|