Skip to content

Commit

Permalink
fix missing resource (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
elopezcastro authored Oct 30, 2023
1 parent 3c49a41 commit 760f4be
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
package org.finos.legend.depot.store.resources.guice;

import com.google.inject.PrivateModule;
import org.finos.legend.depot.store.resources.artifacts.ArtifactDependenciesRefreshResource;
import org.finos.legend.depot.store.resources.artifacts.ArtifactsPurgeResource;
import org.finos.legend.depot.store.resources.artifacts.ArtifactsRefreshResource;
import org.finos.legend.depot.store.resources.artifacts.VersionsReconciliationResource;
Expand All @@ -29,10 +30,12 @@ protected void configure()
bind(ArtifactsPurgeResource.class);
bind(ArtifactsRefreshResource.class);
bind(VersionsReconciliationResource.class);
bind(ArtifactDependenciesRefreshResource.class);

expose(ArtifactsPurgeResource.class);
expose(ArtifactsRefreshResource.class);
expose(VersionsReconciliationResource.class);
expose(ArtifactDependenciesRefreshResource.class);
}

}

0 comments on commit 760f4be

Please sign in to comment.