scope.go 312 B

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