configuration增加了port

This commit is contained in:
Xu Chang 2024-04-18 10:25:07 +08:00
parent 922a45995e
commit 05a299f859
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ export type MySQLConfiguration = {
database: string;
charset: 'utf8mb4_general_ci';
connectionLimit: number;
port?: number;
};
export type Configuration = {
mysql: MySQLConfiguration;

View File

@ -5,6 +5,7 @@ export type MySQLConfiguration = {
database: string;
charset: 'utf8mb4_general_ci';
connectionLimit: number;
port?: number;
}
export type Configuration = {