mirror of
https://github.com/directus/directus.git
synced 2026-01-28 19:38:00 -05:00
9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
import ItemsService from './items';
|
|
import { AbstractServiceOptions } from '../types';
|
|
|
|
export default class RelationsService extends ItemsService {
|
|
constructor(options?: AbstractServiceOptions) {
|
|
super('directus_relations', options);
|
|
}
|
|
}
|