import maxmind, { AsnResponse, Reader } from "maxmind"; import config from "@server/lib/config"; let maxmindAsnLookup: Reader | null; if (config.getRawConfig().server.maxmind_asn_path) { maxmindAsnLookup = await maxmind.open( config.getRawConfig().server.maxmind_asn_path! ); } else { maxmindAsnLookup = null; } export { maxmindAsnLookup };