All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.spincast.demos.better.AppModule Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package org.spincast.demos.better;

import org.spincast.core.guice.SpincastGuiceModuleBase;

import com.google.inject.Scopes;

public class AppModule extends SpincastGuiceModuleBase {

    @Override
    protected void configure() {

        // Binds our controller
        bind(AppController.class).in(Scopes.SINGLETON);

        // ... binds all our other application components here
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy