mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
|
|
import mongoose from "mongoose";
|
|
|
|
export async function connectDatabase(connectionString: string) {
|
|
await mongoose.connect(connectionString);
|
|
}
|
|
|
|
export async function disconnectDatabase() {
|
|
await mongoose.disconnect();
|
|
}
|