bind(JobRegistry.class).to(PersistentJobRegistry.class).asEagerSingleton();
File jobLogStoreBaseDir = new File("jobs");
jobLogStoreBaseDir.mkdirs();
bind(JobLogStore.class).toInstance(new FilesystemJobLogStore(jobLogStoreBaseDir));
// TODO: Split off scheduler
bind(ResultSetMappersProvider.class).asEagerSingleton();
bind(ResultSetMappers.class).toProvider(ResultSetMappersProvider.class).in(Scopes.SINGLETON);