Created
June 26, 2021 08:19
-
-
Save orcchg/5bc70fd89bee2a77039b6e7403dc7906 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Component( | |
| modules = [ | |
| StockListDataModule::class | |
| ], | |
| dependencies = [ | |
| NetworkCoreLibApi::class | |
| ] | |
| ) | |
| interface StockListDataComponent : StockListDataApi { | |
| @Component.Factory | |
| interface Factory { | |
| fun create( | |
| networkCoreLibApi: NetworkCoreLibApi | |
| ): StockListDataComponent | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment