minor eslint fixes

This commit is contained in:
Michael C
2021-12-30 04:09:46 -05:00
parent f97af4c433
commit 42624a7782
2 changed files with 1 additions and 2 deletions

View File

@@ -47,7 +47,6 @@ import { postRating } from "./routes/ratings/postRating";
import { getRating } from "./routes/ratings/getRating";
import { postClearCache as ratingPostClearCache } from "./routes/ratings/postClearCache";
import { getTopCategoryUsers } from "./routes/getTopCategoryUsers";
import path from "path";
export function createServer(callback: () => void): Server {
// Create a service (the app object is just a callback).

View File

@@ -1,5 +1,5 @@
import { Request, Response } from "express";
import { partition } from "lodash"
import { partition } from "lodash";
import { config } from "../config";
import { db, privateDB } from "../databases/databases";
import { skipSegmentsHashKey, skipSegmentsKey, skipSegmentGroupsKey } from "../utils/redisKeys";