mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
15 lines
408 B
TypeScript
15 lines
408 B
TypeScript
import BaseAPI from "Common/Server/API/BaseAPI";
|
|
import WhatsAppLog from "Common/Models/DatabaseModels/WhatsAppLog";
|
|
import WhatsAppLogService, {
|
|
Service as WhatsAppLogServiceType,
|
|
} from "Common/Server/Services/WhatsAppLogService";
|
|
|
|
export default class WhatsAppLogAPI extends BaseAPI<
|
|
WhatsAppLog,
|
|
WhatsAppLogServiceType
|
|
> {
|
|
public constructor() {
|
|
super(WhatsAppLog, WhatsAppLogService);
|
|
}
|
|
}
|