mirror of
https://github.com/docker/awesome-compose.git
synced 2025-11-09 00:14:09 +01:00
10 lines
251 B
JavaScript
Executable File
10 lines
251 B
JavaScript
Executable File
//import { templatesSaga } from "./data/templates/sagas";
|
|
//import { appWizardSaga } from "./data/app-wizard/sagas";
|
|
|
|
const startupSagas = [
|
|
];
|
|
|
|
export const runApplicationSagas = (sagaMiddleware) => {
|
|
startupSagas.forEach(sagaMiddleware.run);
|
|
};
|