From 549b2f30be1b22bae2922aad36c08d163558ab6d Mon Sep 17 00:00:00 2001 From: Arash <38922203+arashsheyda@users.noreply.github.com> Date: Wed, 11 Oct 2023 20:13:08 -0600 Subject: [PATCH] chore: remove comment --- src/runtime/server/services/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/runtime/server/services/index.ts b/src/runtime/server/services/index.ts index 35f06fb..9461760 100644 --- a/src/runtime/server/services/index.ts +++ b/src/runtime/server/services/index.ts @@ -5,7 +5,6 @@ import type { ConnectOptions, Model, SchemaDefinition, SchemaOptions } from 'mon import { useRuntimeConfig } from '#imports' export async function defineMongooseConnection({ uri, options }: { uri?: string; options?: ConnectOptions } = {}): Promise { - // TODO: types const config = useRuntimeConfig().mongoose const mongooseUri = uri || config.uri const mongooseOptions = options || config.options