VentureChat/src/main/java/venture/Aust1n46/chat/VentureChatBungeePluginModule.java
2022-01-15 03:24:56 -06:00

19 lines
459 B
Java

package venture.Aust1n46.chat;
import com.google.inject.AbstractModule;
import venture.Aust1n46.chat.initiators.application.VentureChatBungee;
public class VentureChatBungeePluginModule extends AbstractModule {
private final VentureChatBungee plugin;
public VentureChatBungeePluginModule(final VentureChatBungee plugin) {
this.plugin = plugin;
}
@Override
protected void configure() {
this.bind(VentureChatBungee.class).toInstance(plugin);
}
}