| 27 | } |
| 28 | |
| 29 | type Persistable interface { |
| 30 | Persistent() bool |
| 31 | SetPersistent(value bool) |
| 32 | SaveState() error |
| 33 | RestoreState() error |
| 34 | } |
| 35 | |
| 36 | type Application struct { |
| 37 | mutex sync.RWMutex |
no outgoing calls
no test coverage detected
searching dependent graphs…