org.spincast.website.exchange.AppRouter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spincast-website Show documentation
Show all versions of spincast-website Show documentation
Source code for the https://www.spincast.org website.
The newest version!
package org.spincast.website.exchange;
import org.spincast.core.websocket.IDefaultWebsocketContext;
import org.spincast.plugins.routing.SpincastRouter;
import org.spincast.plugins.routing.SpincastRouterDeps;
import com.google.inject.Inject;
/**
* The only purpose of this class is to make it
* easier to inject the application specific router by using
* "IAppRouter" instead of "IRouter<IAppRequestContext>".
*/
public class AppRouter extends SpincastRouter
implements IAppRouter {
@Inject
public AppRouter(SpincastRouterDeps spincastRouterDeps) {
super(spincastRouterDeps);
// nothing required
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy