mirror of
https://github.com/directus/directus.git
synced 2026-01-29 10:08:02 -05:00
9 lines
236 B
TypeScript
9 lines
236 B
TypeScript
import { AbstractServiceOptions } from '../types';
|
|
import { ItemsService } from './items';
|
|
|
|
export class SettingsService extends ItemsService {
|
|
constructor(options: AbstractServiceOptions) {
|
|
super('directus_settings', options);
|
|
}
|
|
}
|