blob: 328cf1f012ea69f0239bc90776826903f165039c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import Core from "../api.ts";
import RawCore from "../raw/api.ts";
/**
* @summary Direct Core
*
* 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 DirectCoreClient extends RawCore implements Core { }
|