mirror of
https://github.com/mitchell/selfpass.git
synced 2025-06-30 17:56:08 +00:00
10 lines
192 B
Go
10 lines
192 B
Go
package types
|
|
|
|
import "github.com/spf13/viper"
|
|
|
|
type ConfigRepo interface {
|
|
OpenConfig() (masterpass string, cfg *viper.Viper, err error)
|
|
DecryptConfig()
|
|
SetMasterpass(masterpass string)
|
|
}
|