(path string)
| 35 | type SystemStateOptions func(*SystemState) |
| 36 | |
| 37 | func WithBackendPath(path string) SystemStateOptions { |
| 38 | return func(s *SystemState) { |
| 39 | s.Backend.BackendsPath = path |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | func WithBackendSystemPath(path string) SystemStateOptions { |
| 44 | return func(s *SystemState) { |
no outgoing calls
no test coverage detected