mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 19:33:55 +00:00
1e991be5f3
* 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.
13 lines
411 B
Java
13 lines
411 B
Java
import com.google.inject.AbstractModule;
|
|
|
|
import controllers.*;
|
|
|
|
public class Module extends AbstractModule {
|
|
|
|
@Override
|
|
protected void configure() {
|
|
bind(PetApiControllerImpInterface.class).to(PetApiControllerImp.class);
|
|
bind(StoreApiControllerImpInterface.class).to(StoreApiControllerImp.class);
|
|
bind(UserApiControllerImpInterface.class).to(UserApiControllerImp.class);
|
|
}
|
|
} |