@nexe/config-manager
Version:
Nexe Config Manager - A flexible configuration management solution with multiple sources and hot reload support
23 lines • 578 B
JavaScript
;
// import { ConfigProperty, ConfigSection } from '..';
// /**
// * 数据库配置类
// */
// @ConfigSection('database')
// export class DatabaseConfig {
// @ConfigProperty('host')
// host = 'localhost';
// @ConfigProperty('port')
// port = 5432;
// @ConfigProperty('username')
// username = '';
// @ConfigProperty('password')
// password = '';
// @ConfigProperty('database')
// database = '';
// @ConfigProperty('ssl')
// ssl = false;
// @ConfigProperty('poolSize')
// poolSize = 10;
// }
//# sourceMappingURL=database-config.js.map