mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-23 07:42:10 +00:00
11 lines
347 B
TypeScript
11 lines
347 B
TypeScript
|
import PostgresDatabase from '../Infrastructure/PostgresDatabase';
|
||
|
import File from 'Model/Models/File';
|
||
|
import DatabaseService from './DatabaseService';
|
||
|
|
||
|
export class Service extends DatabaseService<File> {
|
||
|
public constructor(postgresDatabase?: PostgresDatabase) {
|
||
|
super(File, postgresDatabase);
|
||
|
}
|
||
|
}
|
||
|
export default new Service();
|