All checks were successful
continuous-integration/drone/push Build is passing
13 lines
199 B
Go
13 lines
199 B
Go
package models
|
|
|
|
type Unlock struct {
|
|
SecretsKey string `json:"secrets"`
|
|
}
|
|
|
|
func (u *Unlock) UnlockSecrets() (*Unlock, error) {
|
|
|
|
// Receive secrets key and store in memory somehow
|
|
|
|
return u, nil
|
|
}
|