mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-03-31 03:15:40 +00:00
This commit is NOT contributed under the Apache-2.0 License. Copyright (C) 2022 Gnuxie <Gnuxie@protonmail.com> All rights reserved.
26 lines
525 B
TypeScript
26 lines
525 B
TypeScript
/**
|
|
* Copyright (C) 2022 Gnuxie <Gnuxie@protonmail.com>
|
|
*/
|
|
|
|
import { MatrixSendClient } from "../../src/MatrixEmitter";
|
|
|
|
/**
|
|
* Do the ReadItems need to be readable?
|
|
* Probably yes!!!
|
|
*/
|
|
export class MatrixInterfaceClient {
|
|
constructor(
|
|
private readonly client: MatrixSendClient,
|
|
private readonly commandRoomId: string,
|
|
) {
|
|
|
|
}
|
|
|
|
public sendCommand
|
|
}
|
|
|
|
// so we have a few options
|
|
// ignore matrix and use the executor result
|
|
// try and verify the writen result
|
|
// i know which is easier....
|