geoshell
Version:
A CLI to fetch real-time geo-data from your terminal
21 lines (18 loc) • 432 B
JavaScript
/**
* GeoShell - Main module
*/
const commands = require('./commands');
const utils = require('./utils/helpers');
const formatter = require('./utils/formatter');
module.exports = {
// Commands
country: commands.country,
weather: commands.weather,
holidays: commands.holidays,
neighbors: commands.neighbors,
timezone: commands.timezone,
news: commands.news,
// Utils
utils,
formatter
};