nodesu
Version:
a node.js osu! api wrapper
22 lines (15 loc) • 406 B
JavaScript
;
const Constants = {
API: {
HOST: 'osu.ppy.sh',
BASE_PATH: '/api',
USER_GET: '/get_user',
USER_GET_BEST: '/get_user_best',
USER_GET_RECENT: '/get_user_recent',
BEATMAPS_GET: '/get_beatmaps',
SCORES_GET: '/get_scores',
REPLAY_GET: '/get_replay',
MULTI_MATCH_GET: '/get_match'
}
}
module.exports = Constants;