mirror of
https://github.com/zellyn/diskii.git
synced 2025-02-16 10:32:10 +00:00
9 lines
160 B
Go
9 lines
160 B
Go
package types
|
|
|
|
// Globals holds flags and configuration that are shared globally.
|
|
type Globals struct {
|
|
Debug bool
|
|
|
|
DiskOperatorFactories []OperatorFactory
|
|
}
|