mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-06 07:32:46 +00:00
18 lines
454 B
Java
18 lines
454 B
Java
package com.l2jserver;
|
|
|
|
import com.google.inject.AbstractModule;
|
|
import com.l2jserver.routines.GameServerInitializationRoutine;
|
|
import com.l2jserver.service.BasicServiceModule;
|
|
import com.l2jserver.service.ServiceModule;
|
|
|
|
public class GameServerModule extends AbstractModule {
|
|
@Override
|
|
protected void configure() {
|
|
install(new BasicServiceModule());
|
|
install(new ServiceModule());
|
|
|
|
// routines
|
|
bind(GameServerInitializationRoutine.class);
|
|
}
|
|
}
|