From 0d8aa1af615493043a5b8be96ccc688a9e3c7322 Mon Sep 17 00:00:00 2001 From: DJensen94 <79864006+DJensen94@users.noreply.github.com> Date: Wed, 20 Mar 2024 11:29:27 -0400 Subject: [PATCH] Alphabetize imports Alphabetize imports in connections and remoe blank space --- backend/src/models/connection.ts | 2 +- backend/src/models/index.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/models/connection.ts b/backend/src/models/connection.ts index 2cf917fb..dcbb0d67 100644 --- a/backend/src/models/connection.ts +++ b/backend/src/models/connection.ts @@ -23,12 +23,12 @@ import { DL_Cpe, DL_Cve, DL_Domain, + DL_Organization, HostScan, Host, Ip, Kev, Location, - DL_Organization, PortScan, PrecertScan, Report, diff --git a/backend/src/models/index.ts b/backend/src/models/index.ts index 3e9a3cad..9e1e2145 100644 --- a/backend/src/models/index.ts +++ b/backend/src/models/index.ts @@ -13,19 +13,19 @@ export * from './webpage'; export * from './api-key'; export * from './saved-search'; export * from './organization-tag'; - +// Mini data lake models export * from './mini_data_lake/cert_scans'; export * from './mini_data_lake/cidrs'; export * from './mini_data_lake/contacts'; export { Cpe as DL_Cpe } from './mini_data_lake/cpes'; export { Cve as DL_Cve } from './mini_data_lake/cves'; export { Domain as DL_Domain } from './mini_data_lake/domains'; +export { Organization as DL_Organization } from './mini_data_lake/organizations'; export * from './mini_data_lake/host_scans'; export * from './mini_data_lake/hosts'; export * from './mini_data_lake/ips'; export * from './mini_data_lake/kevs'; export * from './mini_data_lake/locations'; -export { Organization as DL_Organization } from './mini_data_lake/organizations'; export * from './mini_data_lake/port_scans'; export * from './mini_data_lake/precert_scans'; export * from './mini_data_lake/reports';