-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #337 from center-for-threat-informed-defense/301-r…
…efactor-data-sources-service-for-improved-structure-and-asynchronicity Refactored data sources service for improved structure and asynchronicity
- Loading branch information
Showing
4 changed files
with
364 additions
and
739 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
'use strict'; | ||
|
||
const BaseRepository = require('./_base.repository'); | ||
const DataSource = require('../models/data-source-model'); | ||
|
||
class DataSourcesRepository extends BaseRepository { } | ||
|
||
module.exports = new DataSourcesRepository(DataSource); |
Oops, something went wrong.