create admins endpoint

This commit is contained in:
Errormacr
2023-11-18 20:41:14 +03:00
parent 6bf6886826
commit 5c0b94e09e
59 changed files with 704 additions and 3 deletions

16
backend/dist/config/index.d.ts vendored Normal file
View File

@@ -0,0 +1,16 @@
export declare const config: {
database: {
type: string;
host: string;
port: number;
username: string;
password: string;
database: string;
synchronize: boolean;
logging: boolean;
autoLoadEntities: boolean;
};
server: {
port: number;
};
};