forked from loafle/openapi-generator-original
* Fix issue #6100. Tested with all the samples. * Fix multiple issue with the examples. Removing all of this. Adding fake endpoint .sh but it is not compiling right now.
15 lines
337 B
Plaintext
15 lines
337 B
Plaintext
import com.google.inject.AbstractModule;
|
|
|
|
import controllers.*;
|
|
|
|
public class Module extends AbstractModule {
|
|
|
|
@Override
|
|
protected void configure() {
|
|
{{#apiInfo}}
|
|
{{#apis}}
|
|
bind({{classname}}ControllerImpInterface.class).to({{classname}}ControllerImp.class);
|
|
{{/apis}}
|
|
{{/apiInfo}}
|
|
}
|
|
} |