commonMain.com.makeevrserg.mobilex.di.Factory.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-locator Show documentation
Show all versions of service-locator Show documentation
KMM library with frequently used code
The newest version!
package com.makeevrserg.mobilex.di
/**
* [Factory] is a fun interface which can build data for your classes
*
* It's look similar to [Provider] but it's more convenient to use different naming for this two
*/
fun interface Factory {
fun create(): T
}