mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
8 lines
202 B
TypeScript
8 lines
202 B
TypeScript
import { Event } from "@server/types";
|
|
|
|
export default abstract class BaseProcessor {
|
|
static applicableEvents: (Event["name"] | "*")[] = [];
|
|
|
|
public abstract perform(event: Event): Promise<void>;
|
|
}
|