2020-05-07 18:40:35 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) SapphireCode - All Rights Reserved
|
|
|
|
* This file is part of Snippeteer which is released under BSD-3-Clause.
|
|
|
|
* See file 'LICENSE' for full license details.
|
|
|
|
* Created by Timo Hocker <timo@scode.ovh>, May 2020
|
|
|
|
*/
|
|
|
|
|
2020-04-18 20:43:02 +02:00
|
|
|
import { Snippet } from '../../Snippet';
|
|
|
|
|
|
|
|
export default class Database implements Snippet {
|
2020-05-11 12:01:39 +02:00
|
|
|
public is_active (): boolean {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-18 20:43:02 +02:00
|
|
|
public start (): Promise<void> {
|
2020-05-11 12:01:39 +02:00
|
|
|
return Promise.resolve ();
|
2020-04-18 20:43:02 +02:00
|
|
|
}
|
|
|
|
}
|