Skip to content

Commit

Permalink
Alphabetize imports
Browse files Browse the repository at this point in the history
Alphabetize imports in connections and remoe blank space
  • Loading branch information
DJensen94 committed Mar 20, 2024
1 parent 392fd7e commit 0d8aa1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/src/models/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import {
DL_Cpe,
DL_Cve,
DL_Domain,
DL_Organization,
HostScan,
Host,
Ip,
Kev,
Location,
DL_Organization,
PortScan,
PrecertScan,
Report,
Expand Down
4 changes: 2 additions & 2 deletions backend/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 0d8aa1a

Please sign in to comment.