facebook-group-posts-scraper
Version:
Facebook group posts scraper
17 lines (16 loc) • 551 B
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const yacl_1 = require("yacl");
const get_1 = __importDefault(require("./get"));
const fbCommand = new yacl_1.Command({
name: 'facebook',
description: 'Runs facebook automation',
run: () => {
console.log('Facebook subcommand called');
},
});
fbCommand.addSubCommand(get_1.default);
exports.default = fbCommand;
;