This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/src/consts/WebsiteType.js
2022-10-14 20:00:47 +01:00

16 lines
320 B
JavaScript

import Config from "../../config.json";
const WebsiteTypes = {
ScoreSaber: {
ApiUrl: Config.proxy_url + "/https://scoresaber.com/api/player/%s/full",
},
BeatLeader: {
ApiUrl: Config.proxy_url + "/https://api.beatleader.xyz/player/%s",
},
Test: {
ApiUrl: "/api/mockdata",
},
};
export default WebsiteTypes;