6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
22 lines
501 B
JavaScript
22 lines
501 B
JavaScript
"use strict";
|
|
const stores = /* @__PURE__ */ new Map();
|
|
module.exports = (dialect) => {
|
|
if (!stores.has(dialect)) {
|
|
stores.set(dialect, /* @__PURE__ */ new Map());
|
|
}
|
|
return {
|
|
clear() {
|
|
stores.get(dialect).clear();
|
|
},
|
|
refresh(dataType) {
|
|
for (const type of dataType.types[dialect]) {
|
|
stores.get(dialect).set(type, dataType.parse);
|
|
}
|
|
},
|
|
get(type) {
|
|
return stores.get(dialect).get(type);
|
|
}
|
|
};
|
|
};
|
|
//# sourceMappingURL=parserStore.js.map
|