| 37 | } |
| 38 | |
| 39 | type TsunamiController struct { |
| 40 | blockId string |
| 41 | tabId string |
| 42 | connName string |
| 43 | runLock sync.Mutex |
| 44 | tsunamiProc *TsunamiAppProc |
| 45 | statusLock sync.Mutex |
| 46 | status string |
| 47 | versionTs utilds.VersionTs |
| 48 | exitCode int |
| 49 | port int |
| 50 | } |
| 51 | |
| 52 | func (c *TsunamiController) setManifestMetadata(appId string) { |
| 53 | manifest, err := waveappstore.ReadAppManifest(appId) |
nothing calls this directly
no outgoing calls
no test coverage detected