mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-02-05 21:33:01 -05:00
This commit is contained in:
@@ -23,4 +23,6 @@ import dagger.assisted.AssistedFactory
|
||||
* Factory for creating `BluetoothInterface` instances.
|
||||
*/
|
||||
@AssistedFactory
|
||||
interface BluetoothInterfaceFactory : InterfaceFactorySpi<BluetoothInterface>
|
||||
interface BluetoothInterfaceFactory {
|
||||
fun create(rest: String): BluetoothInterface
|
||||
}
|
||||
@@ -23,4 +23,6 @@ import dagger.assisted.AssistedFactory
|
||||
* Factory for creating `MockInterface` instances.
|
||||
*/
|
||||
@AssistedFactory
|
||||
interface MockInterfaceFactory : InterfaceFactorySpi<MockInterface>
|
||||
interface MockInterfaceFactory {
|
||||
fun create(rest: String): MockInterface
|
||||
}
|
||||
@@ -23,4 +23,6 @@ import dagger.assisted.AssistedFactory
|
||||
* Factory for creating `NopInterface` instances.
|
||||
*/
|
||||
@AssistedFactory
|
||||
interface NopInterfaceFactory : InterfaceFactorySpi<NopInterface>
|
||||
interface NopInterfaceFactory {
|
||||
fun create(rest: String): NopInterface
|
||||
}
|
||||
@@ -23,4 +23,6 @@ import dagger.assisted.AssistedFactory
|
||||
* Factory for creating `SerialInterface` instances.
|
||||
*/
|
||||
@AssistedFactory
|
||||
interface SerialInterfaceFactory : InterfaceFactorySpi<SerialInterface>
|
||||
interface SerialInterfaceFactory {
|
||||
fun create(rest: String): SerialInterface
|
||||
}
|
||||
@@ -23,4 +23,6 @@ import dagger.assisted.AssistedFactory
|
||||
* Factory for creating `TCPInterface` instances.
|
||||
*/
|
||||
@AssistedFactory
|
||||
interface TCPInterfaceFactory : InterfaceFactorySpi<TCPInterface>
|
||||
interface TCPInterfaceFactory {
|
||||
fun create(rest: String): TCPInterface
|
||||
}
|
||||
Reference in New Issue
Block a user