mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
DebugFuncモジュール作成
This commit is contained in:
parent
31fcdd788a
commit
c782960949
|
@ -1,4 +1,15 @@
|
||||||
package one.nem.lacerta.data.module;
|
package one.nem.lacerta.data.module;
|
||||||
|
|
||||||
public class DebugFuncModule {
|
import dagger.Binds;
|
||||||
|
import dagger.Module;
|
||||||
|
import dagger.hilt.InstallIn;
|
||||||
|
import one.nem.lacerta.data.repository.DebugFunc;
|
||||||
|
import one.nem.lacerta.data.impl.DebugFuncImpl;
|
||||||
|
|
||||||
|
@Module
|
||||||
|
@InstallIn(DebugFuncImpl.class)
|
||||||
|
abstract class DebugFuncModule {
|
||||||
|
|
||||||
|
@Binds
|
||||||
|
public abstract DebugFunc bindDebugFunc(DebugFuncImpl debugFuncImpl);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user