This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
import mongoose from 'mongoose';
|
||||
import mongoose from "mongoose";
|
||||
|
||||
import { StrategyDocument, StrategyModel, StrategySchema } from '../schema/strategy';
|
||||
import { COLL_STRATEGY } from '../constants/db';
|
||||
import {
|
||||
StrategyDocument,
|
||||
StrategyModel,
|
||||
StrategySchema,
|
||||
} from "../schema/strategy";
|
||||
import { COLL_STRATEGY } from "../constants/db";
|
||||
|
||||
export const Strategy = mongoose.model<StrategyDocument, StrategyModel>(COLL_STRATEGY, StrategySchema);
|
||||
export const Strategy = mongoose.model<StrategyDocument, StrategyModel>(
|
||||
COLL_STRATEGY,
|
||||
StrategySchema
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user