v1.3.0
This commit is contained in:
parent
8f76a3e59b
commit
fc8eb81ffe
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@navy.gif/wrappers",
|
"name": "@navy.gif/wrappers",
|
||||||
"version": "1.2.3",
|
"version": "1.3.0",
|
||||||
"description": "Various wrapper classes I use in my projects",
|
"description": "Various wrapper classes I use in my projects",
|
||||||
"repository": "https://git.corgi.wtf/Navy.gif/wrappers.git",
|
"repository": "https://git.corgi.wtf/Navy.gif/wrappers.git",
|
||||||
"author": "Navy.gif",
|
"author": "Navy.gif",
|
||||||
|
@ -15,9 +15,9 @@ type Credentials = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export type MariaOptions = {
|
export type MariaOptions = {
|
||||||
load: boolean,
|
load?: boolean,
|
||||||
cluster: PoolClusterConfig,
|
cluster?: PoolClusterConfig,
|
||||||
client: PoolConfig,
|
client?: PoolConfig,
|
||||||
credentials: Credentials,
|
credentials: Credentials,
|
||||||
loggerOptions?: LoggerClientOptions
|
loggerOptions?: LoggerClientOptions
|
||||||
}
|
}
|
||||||
|
@ -14,8 +14,9 @@ type Credentials = {
|
|||||||
|
|
||||||
export type MongoOptions = {
|
export type MongoOptions = {
|
||||||
credentials: Credentials,
|
credentials: Credentials,
|
||||||
loggerOptions: LoggerClientOptions,
|
loggerOptions?: LoggerClientOptions,
|
||||||
client: MongoClientOptions
|
client: MongoClientOptions,
|
||||||
|
load?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -90,6 +91,9 @@ class MongoDB {
|
|||||||
*/
|
*/
|
||||||
async init () {
|
async init () {
|
||||||
|
|
||||||
|
if (this.#config.load)
|
||||||
|
return this.#logger.info('Not loading MongoDB');
|
||||||
|
|
||||||
this.#logger.status(`Initializing database connection to ${this.#_client.options.hosts}`);
|
this.#logger.status(`Initializing database connection to ${this.#_client.options.hosts}`);
|
||||||
|
|
||||||
await this.#_client.connect();
|
await this.#_client.connect();
|
||||||
|
Loading…
Reference in New Issue
Block a user