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
17 lines
264 B
JavaScript
Executable File
17 lines
264 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
/**
|
|
* Marked CLI
|
|
* Copyright (c) 2018+, MarkedJS. (MIT License)
|
|
* Copyright (c) 2011-2018, Christopher Jeffrey. (MIT License)
|
|
*/
|
|
|
|
import { main } from './main.js';
|
|
|
|
/**
|
|
* Expose / Entry Point
|
|
*/
|
|
|
|
process.title = 'marked';
|
|
main(process);
|