Skip to content

Commit

Permalink
fix: πŸ› fix import path to pass lint check
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumeisongsong committed Dec 3, 2024
1 parent ca08b71 commit a4b642c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/users/interface-adapters/src/lib/users.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { Module } from '@nestjs/common';
import { GraphQLModule } from '@nestjs/graphql';
import { DatabaseModule } from '@shared/infrastructure-mongoose';
import { UsersService, GetUserUseCase } from '@users/application';
import { UsersResolver } from '@users/interface-adapters';
import {
MongooseUsersRepository,
UserDocument,
Expand All @@ -16,6 +15,8 @@ import {
import { MongooseModule } from '@nestjs/mongoose';
import { USERS_REPOSITORY } from '@users/domain';

import { UsersResolver } from './resolver/users.resolver';

@Module({
providers: [
UsersResolver,
Expand Down

0 comments on commit a4b642c

Please sign in to comment.