14 lines
227 B
Java
14 lines
227 B
Java
package mc.server.di;
|
|
|
|
import com.typesafe.config.Config;
|
|
import dagger.Component;
|
|
|
|
import javax.inject.Singleton;
|
|
|
|
@Component(modules = ConfigModule.class)
|
|
@Singleton
|
|
public interface ConfigComponent {
|
|
|
|
Config getConfig();
|
|
}
|