mirror of
https://github.com/directus/directus.git
synced 2026-02-01 10:34:58 -05:00
9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
import ItemsService from './items';
|
|
import { AbstractServiceOptions } from '../types';
|
|
|
|
export default class WebhooksService extends ItemsService {
|
|
constructor(options?: AbstractServiceOptions) {
|
|
super('directus_webhooks', options);
|
|
}
|
|
}
|