A tool for conquest of ATProto lexicons. https://jsr.io/@hotsocket/lexiconqueror
406 B
14 lines
1/*
2 * This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
5 */
6
7export * from "./src/config_public.ts";
8
9// running as program
10import { argv, exit } from "node:process";
11import { main } from "./src/main.ts";
12if (import.meta.main) {
13 exit(await main(argv));
14}