config

package
v0.13.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 7, 2026 License: BSD-2-Clause Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	CurrentUser  string           `yaml:"current_user"`
	DefaultVault string           `yaml:"default_vault"`
	Vaults       map[string]Vault `yaml:"vaults"`
}

Config represents the vault-cli configuration.

type Loader

type Loader interface {
	Load(ctx context.Context) (*Config, error)
	GetVaultPath(ctx context.Context, vaultName string) (string, error)
	GetVault(ctx context.Context, vaultName string) (*Vault, error)
	GetAllVaults(ctx context.Context) ([]*Vault, error)
	GetCurrentUser(ctx context.Context) (string, error)
}

func NewLoader

func NewLoader(configPath string) Loader

NewLoader creates a new config loader.

type Vault

type Vault struct {
	Path          string `yaml:"path"`
	Name          string `yaml:"name"`
	TasksDir      string `yaml:"tasks_dir,omitempty"`
	GoalsDir      string `yaml:"goals_dir,omitempty"`
	ThemesDir     string `yaml:"themes_dir,omitempty"`
	ObjectivesDir string `yaml:"objectives_dir,omitempty"`
	VisionDir     string `yaml:"vision_dir,omitempty"`
	DailyDir      string `yaml:"daily_dir,omitempty"`
}

Vault represents a single vault configuration.

func (*Vault) GetDailyDir

func (v *Vault) GetDailyDir() string

GetDailyDir returns the daily notes directory, defaulting to "Daily Notes" if not set.

func (*Vault) GetGoalsDir

func (v *Vault) GetGoalsDir() string

GetGoalsDir returns the goals directory, defaulting to "Goals" if not set.

func (*Vault) GetObjectivesDir

func (v *Vault) GetObjectivesDir() string

GetObjectivesDir returns the objectives directory, defaulting to "22 Objectives" if not set.

func (*Vault) GetTasksDir

func (v *Vault) GetTasksDir() string

GetTasksDir returns the tasks directory, defaulting to "Tasks" if not set.

func (*Vault) GetThemesDir

func (v *Vault) GetThemesDir() string

GetThemesDir returns the themes directory, defaulting to "21 Themes" if not set.

func (*Vault) GetVisionDir

func (v *Vault) GetVisionDir() string

GetVisionDir returns the vision directory, defaulting to "20 Vision" if not set.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL