Meshtastic-Android/app/src/main/java/com/geeksville/mesh/service/NopInterface.kt

10 lines
169 B
Kotlin
Raw Normal View History

2021-02-01 10:31:39 +08:00
package com.geeksville.mesh.service
class NopInterface : IRadioInterface {
override fun handleSendToRadio(p: ByteArray) {
}
override fun close() {
}
}