remove id from lifted Context

This commit is contained in:
Jacob Nguyen
2023-04-12 17:06:54 -05:00
parent 8bdb6d8216
commit b40f8905ea

View File

@@ -6,7 +6,6 @@ export abstract class Context<Left, Right> {
abstract get message(): Left;
abstract get interaction(): Right;
abstract get id(): string;
}