org.spincast.website.exchange.AppRouterDefault 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.
package org.spincast.website.exchange;
import org.spincast.core.websocket.DefaultWebsocketContext;
import org.spincast.plugins.routing.SpincastRouter;
import org.spincast.plugins.routing.SpincastRouterDeps;
import com.google.inject.Inject;
public class AppRouterDefault extends SpincastRouter
implements AppRouter {
@Inject
public AppRouterDefault(SpincastRouterDeps spincastRouterDeps) {
super(spincastRouterDeps);
// nothing required
}
}