UNPKG

yandex-music-api

Version:

A Node.js wrapper for the Yandex.Music API (Unofficial) http://music.yandex.ru

13 lines (11 loc) 246 B
var Request = require('./request'); var HOST = 'oauth.mobile.yandex.net', PORT = 443, SCHEME = 'https'; module.exports.get = function() { return new Request({ host: HOST, port: PORT, scheme: SCHEME }); }