[BAEL-14274] - Reverted the rename of EventWithFormat to Event

This commit is contained in:
amit2103
2019-10-27 19:52:36 +05:30
parent db85c8f275
commit a840e3505c
20514 changed files with 1642290 additions and 0 deletions
@@ -0,0 +1,12 @@
package app.services;
import com.google.inject.AbstractModule;
public class ArticleServiceModule extends AbstractModule {
@Override
protected void configure() {
bind(ArticleService.class).to(ArticleServiceImpl.class)
.asEagerSingleton();
}
}