Skip to content

Commit

Permalink
refactor: roomListGET remove useless module import
Browse files Browse the repository at this point in the history
  • Loading branch information
youngkwon02 committed Feb 17, 2022
1 parent 2116a0c commit 4fc28b2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions functions/api/routes/room/roomListGET.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
const functions = require('firebase-functions');
const admin = require('firebase-admin');
const util = require('../../../lib/util');
const statusCode = require('../../../constants/statusCode');
const responseMessage = require('../../../constants/responseMessage');
const db = require('../../../db/db');
const { userDB, roomDB, sparkDB } = require('../../../db');
const jwtHandlers = require('../../../lib/jwtHandlers');
const { roomDB } = require('../../../db');
const slackAPI = require('../../../middlewares/slackAPI');
const dayjs = require('dayjs');
const { filter } = require('lodash');
const _ = require('lodash');
const roomPOST = require('./roomPOST');

/**
* @습관방_리스트_조회
Expand Down

0 comments on commit 4fc28b2

Please sign in to comment.