
org.slieb.soy.configuration.DefaultFactoryHelperModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soy-annotations Show documentation
Show all versions of soy-annotations Show documentation
Soy utilities to easily convert and and render classes with soy
templates.
The newest version!
package org.slieb.soy.configuration;
import com.google.inject.AbstractModule;
import org.slieb.soy.helpers.DefaultFactoryHelper;
import org.slieb.soy.helpers.FactoryHelper;
public class DefaultFactoryHelperModule extends AbstractModule {
@Override
protected void configure() {
bind(FactoryHelper.class)
.to(DefaultFactoryHelper.class)
.asEagerSingleton();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy