13 lines
243 B
JavaScript
Executable File
13 lines
243 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
import { main } from "../dist/cli.mjs";
|
|
|
|
globalThis.__SRVX_BIN__ = import.meta.url;
|
|
|
|
await main({
|
|
usage: {
|
|
command: "srvx",
|
|
docs: "https://srvx.h3.dev",
|
|
issues: "https://github.com/h3js/srvx/issues",
|
|
},
|
|
});
|