Files
sporel-tool-mapper/bin/mapper.js
Axel Meyer b1743ad19f Add CLI dispatcher and bin entry
Top-level run(argv,{out,err}) accepts an injectable output sink so
handlers can be unit-tested without spawning a subprocess. Handler
map is empty for now; subcommands are wired in as they land.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-23 13:44:10 +02:00

6 lines
162 B
JavaScript

#!/usr/bin/env node
'use strict';
const { run } = require('../src/cli');
process.exit(run(process.argv.slice(2), { out: process.stdout, err: process.stderr }));