- Configurable server URL (default: pedshub.com) - Android + iOS platforms initialized - Dark theme matching quiz app (#0f172a) - Status bar and navigation bar color matched - Auto-redirect on subsequent launches - App ID: com.pedshub.quiz, App Name: PedsHub Build: cd mobile && npx cap sync && npx cap open android Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
575 B
JavaScript
17 lines
575 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.run = void 0;
|
|
async function run(args) {
|
|
let cmd;
|
|
if (args.includes('--help') || args.includes('-h')) {
|
|
cmd = await Promise.resolve().then(() => require('./help'));
|
|
return cmd.run(args);
|
|
}
|
|
if (args.includes('--list') || args.includes('-l')) {
|
|
cmd = await Promise.resolve().then(() => require('./list'));
|
|
return cmd.run(args);
|
|
}
|
|
cmd = await Promise.resolve().then(() => require('./run'));
|
|
await cmd.run(args);
|
|
}
|
|
exports.run = run;
|