mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
This commit is contained in:
parent
49270aca2e
commit
e4061d9e3e
5 changed files with 15 additions and 5 deletions
|
|
@ -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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue