-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
75 additions
and
58 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
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
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
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
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import { BaseOvniFranceCaseSummary } from "./BaseOvniFranceCaseSummary" | ||
import { CaseSource } from "../CaseSource" | ||
import { RR0SsgContext } from "../../../RR0SsgContext" | ||
|
||
export abstract class BaseOvniFranceDatasource implements CaseSource<BaseOvniFranceCaseSummary> { | ||
readonly author = "Chastan, Luc" | ||
readonly authors = ["Chastan, Luc"] | ||
readonly copyright = "Base OVNI France" | ||
|
||
abstract getAll(context: RR0SsgContext): Promise<BaseOvniFranceCaseSummary[]> | ||
} |
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
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import { FuforaCaseSummary } from "./FuforaCaseSummary" | ||
import { CaseSource } from "../CaseSource" | ||
import { RR0SsgContext } from "../../../RR0SsgContext" | ||
|
||
export abstract class FuforaDatasource implements CaseSource<FuforaCaseSummary> { | ||
readonly author = "FUFORA" | ||
readonly authors = ["FUFORA"] | ||
readonly copyright = "Base de données observationnelle" | ||
|
||
abstract getAll(context: RR0SsgContext): Promise<FuforaCaseSummary[]> | ||
} |
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
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
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 |
---|---|---|
@@ -1,4 +1,10 @@ | ||
export abstract class GeipanDatasource { | ||
readonly author = "GEIPAN" | ||
import { CaseSource } from "../CaseSource" | ||
import { GeipanCaseSummary } from "./GeipanCaseSummary" | ||
import { RR0SsgContext } from "../../../RR0SsgContext" | ||
|
||
export abstract class GeipanDatasource implements CaseSource<GeipanCaseSummary> { | ||
readonly authors = ["GEIPAN"] | ||
readonly copyright = "Catalogue de cas" | ||
|
||
abstract getAll(context: RR0SsgContext): Promise<GeipanCaseSummary[]> | ||
} |
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
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import { NuforcCaseSummary } from "./NuforcCaseSummary" | ||
import { CaseSource } from "../CaseSource" | ||
import { RR0SsgContext } from "../../../RR0SsgContext" | ||
|
||
export abstract class NuforcHttpDatasource implements CaseSource<NuforcCaseSummary> { | ||
readonly author = "NUFORC" | ||
export abstract class NuforcDatasource implements CaseSource<NuforcCaseSummary> { | ||
readonly authors = ["NUFORC"] | ||
readonly copyright = "Online Database" | ||
|
||
abstract getAll(context: RR0SsgContext): Promise<NuforcCaseSummary[]> | ||
} |
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
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
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import { CaseSource } from "../CaseSource" | ||
import { RR0CaseSummary } from "../../RR0CaseSummary" | ||
import { RR0CaseSummary } from "./RR0CaseSummary" | ||
import { RR0SsgContext } from "../../../RR0SsgContext" | ||
|
||
export abstract class RR0Datasource implements CaseSource<RR0CaseSummary> { | ||
readonly author = "Jérôme Beau" | ||
readonly authors = ["Jérôme Beau"] | ||
readonly copyright = "RR0" | ||
|
||
abstract getAll(context: RR0SsgContext): Promise<RR0CaseSummary[]> | ||
} |
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
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import { UrecatCase } from "./UrecatCase" | ||
import { CaseSource } from "../CaseSource" | ||
import { RR0SsgContext } from "../../../RR0SsgContext" | ||
|
||
export abstract class UrecatDatasource implements CaseSource<UrecatCase> { | ||
readonly author = "Gross, Patrick" | ||
readonly authors = ["Gross, Patrick"] | ||
readonly copyright = "URECAT (Les ovnis vus de près)" | ||
|
||
abstract getAll(context: RR0SsgContext): Promise<UrecatCase[]> | ||
} |
Oops, something went wrong.