aboutsummaryrefslogtreecommitdiff
path: root/src/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts
new file mode 100644
index 0000000..dd96169
--- /dev/null
+++ b/src/config.ts
@@ -0,0 +1,7 @@
+import type { Publisher } from "./publisher";
+
+export interface Config {
+ result_publishers: Publisher[];
+ dns: string[];
+ timeout: string;
+}