Delete osu.ts

This commit is contained in:
2021-09-19 08:40:12 -07:00
parent 984c354b8f
commit 5fa28e2dd0
-25
View File
@@ -1,25 +0,0 @@
import { Api } from 'node-osu';
import Environment from './Environment';
class osu {
public client: Api;
constructor () {
this.client = new Api(Environment.get().OSU_API_KEY, {
notFoundAsError: false,
completeScores: true,
parseNumeric: true
});
}
public init(): void {
}
public end(): void {
}
}
export default new osu();