UNPKG

albion

Version:

NodeJS module to interact with the Albion Online API

30 lines (24 loc) 503 B
const { getPlayerById, getPlayerByName, getGuildById, getGuildByName, getAllianceById, getPlayerId, getGuildId } = require('./actions'); const Alliance = require('./structures/Alliance'); const Guild = require('./structures/Guild'); const Player = require('./structures/Player'); module.exports = { getPlayerById, getPlayerByName, getGuildById, getGuildByName, getAllianceById, getPlayerId, getGuildId, Alliance, Guild, Player };