package shell import ( "notabug.org/Umnik/GoAndroidSDK/v2/components/sdk/platformTools/adb/connection" ) type DeviceShell struct { connection connection.Connection } func (d DeviceShell) Connection() connection.Connection { return d.connection }