Files
smt/models/db_unlock.go
Nathan Coad 9203e09d2d
All checks were successful
continuous-integration/drone/push Build is passing
test loading secret key
2023-12-27 17:29:02 +11:00

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
}