This commit is contained in:
2020-06-28 16:55:44 +02:00
parent 146c9b661f
commit 3e773b5327
7 changed files with 103 additions and 27 deletions

View File

@ -11,7 +11,9 @@ import { Menu } from './Menu';
export class MainMenu extends Menu {
public constructor (db: Database) {
super ('Snippeteer Database');
this.register_option ('quit', () => { /* noop */ });
this.register_option ('quit', () => {
// noop
});
this.register_option ('create table', () => {
console.log ('table');
});