mirror of
https://github.com/docker/awesome-compose.git
synced 2026-05-17 08:56:02 +03: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);
|
|
};
|