mrapids 0.1.31

Your OpenAPI, but executable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env node

const path = require('path');
const fs = require('fs');

// Create bin directory if it doesn't exist
const binDir = path.join(__dirname, '..', 'bin');
if (!fs.existsSync(binDir)) {
  fs.mkdirSync(binDir, { recursive: true });
}

console.log('mrapids: Ready to download binary on first use');
console.log('Run "mrapids --help" to get started');