Start CLI and db schema queries

This commit is contained in:
2020-10-05 11:42:16 -05:00
parent c1e7f750fc
commit b131cb589e
17 changed files with 933 additions and 6 deletions

View File

@@ -27,7 +27,6 @@ export class CLIService extends AppClass {
protected readonly logger: Logging,
) { super() }
/**
* Find a registered directive using its keyword, if one exists.
* @param {string} keyword
@@ -57,4 +56,17 @@ export class CLIService extends AppClass {
this.logger.verbose(`Registering CLI directive with keyword: ${directive.keyword}`)
this.directives.push(directive)
}
public show_logo() {
return true
}
public get_logo() {
return `██████╗ █████╗ ████████╗ ██████╗ ███╗ ██╗
██╔══██╗██╔══██╗╚══██╔══╝██╔═══██╗████╗ ██║
██║ ██║███████║ ██║ ██║ ██║██╔██╗ ██║
██║ ██║██╔══██║ ██║ ██║ ██║██║╚██╗██║
██████╔╝██║ ██║ ██║ ╚██████╔╝██║ ╚████║
╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝`
}
}