mirror of
https://github.com/directus/directus.git
synced 2026-02-02 12:45:08 -05:00
9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
import { ItemsService } from './items';
|
|
import { AbstractServiceOptions } from '../types';
|
|
|
|
export class FoldersService extends ItemsService {
|
|
constructor(options: AbstractServiceOptions) {
|
|
super('directus_folders', options);
|
|
}
|
|
}
|