diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-06-30 17:31:46 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-06-30 17:31:46 +0200 |
commit | 722127ef4059020876f708b1d5406c04fd07b0da (patch) | |
tree | 1a849e4c8eae688a9e51aaaaaff76d56ca79f171 /core/direct | |
parent | cc5689eaf4f7cfa158e31107906434da9aed62bf (diff) |
WIP user api
Diffstat (limited to 'core/direct')
-rw-r--r-- | core/direct/client.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/direct/client.ts b/core/direct/client.ts index fda4b60..328cf1f 100644 --- a/core/direct/client.ts +++ b/core/direct/client.ts @@ -1,11 +1,11 @@ -import API from "../api.ts"; -import YomikunRAWAPI from "../raw/api.ts"; +import Core from "../api.ts"; +import RawCore from "../raw/api.ts"; /** - * @summary Yomikun direct API + * @summary Direct Core * - * Alias to YomikunRAWAPI. calls API methods directly, and thus only works - * server-side. Used to test the API locally without HTTP overhead. + * Alias to RawCore. Calls Core methods directly, and thus only works + * server-side. Used to test the Core locally without HTTP overhead. */ -export default class YomikunDirectAPIClient extends YomikunRAWAPI implements API { } +export default class DirectCoreClient extends RawCore implements Core { } |