mirror of
				https://github.com/Aust1n46/VentureChat.git
				synced 2025-10-31 14:12:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			459 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			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);
 | |
| 	}
 | |
| }
 | 
