Versions in this module Expand all Collapse all v0 v0.1.1 Mar 28, 2024 v0.1.0 Mar 28, 2024 Changes in this version + type Cli struct + func NewCli(store store.Store, cfg *Config) *Cli + func (c *Cli) ExecuteCmd(cmd string, args ...string) string + func (c *Cli) Export(path string) error + func (c *Cli) GeneratePassword() error + func (c *Cli) GetPassword(key string) (string, error) + func (c *Cli) Import(csvPath string, concurrency int, withEncryption bool) error + func (c *Cli) PrintHelp() + type Commands interface + Export func(path string) error + GeneratePassword func() error + GetPassword func(key string) (string, error) + Import func(csvPath string, concurrency int, withEncryption bool) error + type Config struct + DbPath string + EncKey string + ExecTimeout uint + LogsPath string + func LoadConfig() (*Config, error) + func (c *Config) WriteLogs(bytes []byte) error + type GenFlags struct