started refactoring (app) layout

This commit is contained in:
Eclypsed
2024-01-25 19:50:26 -05:00
parent 0ad1ace45b
commit 4fcfdc0ee6
7 changed files with 82 additions and 10 deletions

View File

@@ -11,12 +11,6 @@ db.exec(initUsersTable)
db.exec(initServicesTable)
db.exec(initConnectionsTable)
interface User {
id: string
username: string
password?: string
}
type UserQueryParams = {
includePassword?: boolean
}