| 26 | ) |
| 27 | |
| 28 | type App interface { |
| 29 | GetId() string |
| 30 | IsSigned() (bool, error) |
| 31 | GetModTime() (time.Time, error) |
| 32 | ResetModTime() error |
| 33 | delete() error |
| 34 | FileSystem |
| 35 | } |
| 36 | |
| 37 | func loadApp(id string) App { |
| 38 | return newApp(id) |
no outgoing calls
no test coverage detected