add a RepositoryLoader interface defining a fetchAndUpdateAll method

This commit is contained in:
2025-04-11 16:43:46 -07:00
parent 49b823890f
commit 16dce32887
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
export interface RepositoryLoader {
fetchAndUpdateAll(): Promise<void>;
}