| 3 | import "strings" |
| 4 | |
| 5 | type Platform interface { |
| 6 | Init(platformName string) error |
| 7 | GetName() string |
| 8 | GetHostName() string |
| 9 | GetToolchain() Toolchain |
| 10 | GetRootFS() RootFS |
| 11 | Setup() error |
| 12 | } |
| 13 | |
| 14 | type Toolchain interface { |
| 15 | GetName() string |
no outgoing calls
no test coverage detected