aboutsummaryrefslogtreecommitdiff
path: root/core/direct/client.ts
blob: fda4b609e15a739c38f54279b5d41aac6fba98df (plain)
1
2
3
4
5
6
7
8
9
10
11
import API from "../api.ts";
import YomikunRAWAPI from "../raw/api.ts";

/**
 * @summary Yomikun direct API
 * 
 * Alias to YomikunRAWAPI. calls API methods directly, and thus only works
 * server-side. Used to test the API locally without HTTP overhead.
 */
export default class YomikunDirectAPIClient extends YomikunRAWAPI implements API { }