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 { }