struct.go 252 B

1234567891011121314
  1. package shell
  2. import (
  3. "notabug.org/Umnik/GoAndroidSDK/v2/components/sdk/platformTools/adb/connection"
  4. )
  5. type DeviceShell struct {
  6. connection connection.Connection
  7. }
  8. func (d DeviceShell) Connection() connection.Connection {
  9. return d.connection
  10. }