context.go 273 B

12345678
  1. // Package internal contains data internal to the application,
  2. // available to its services, but not to any code importing them.
  3. package internal
  4. // Config is the global union config for the application, regardless of the command used
  5. type Config struct {
  6. Verbose bool
  7. }