| package com.apigee.security.oas; | |
| import com.google.inject.AbstractModule; | |
| /** Top level module that imports other Guice modules relied upon. */ | |
| public final class CommandLineModule extends AbstractModule { | |
| @Override | |
| protected void configure() { | |
| install(new CommandLineInnerModule()); | |
| binder().requireExplicitBindings(); | |
| } | |
| } |