scope.go

 1package config
 2
 3// Scope determines which config file is targeted for read/write operations.
 4type Scope int
 5
 6const (
 7	// ScopeGlobal targets the global data config (~/.local/share/crush/crush.json).
 8	ScopeGlobal Scope = iota
 9	// ScopeWorkspace targets the workspace config (.crush/crush.json).
10	ScopeWorkspace
11)