| 1 | package context |
| 2 | |
| 3 | type Project interface { |
| 4 | Init(ctx Context, projectName string) error |
| 5 | GetName() string |
| 6 | GetPorts() []string |
| 7 | GetTargetPlatform() string |
| 8 | GetVars() []string |
| 9 | Write(platformPath string, override bool) error |
| 10 | } |
no outgoing calls
no test coverage detected