aboutsummaryrefslogtreecommitdiff
path: root/core/http/props.ts
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-06-28 23:59:50 +0200
committerlonkaars <loek@pipeframe.xyz>2023-06-28 23:59:50 +0200
commit67dbb6421976254658c5e38045513129dd18187a (patch)
tree288b599d1097b26bdbcad3b6749b38e133017cf2 /core/http/props.ts
initial public commit
Diffstat (limited to 'core/http/props.ts')
-rw-r--r--core/http/props.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/http/props.ts b/core/http/props.ts
new file mode 100644
index 0000000..d69ae55
--- /dev/null
+++ b/core/http/props.ts
@@ -0,0 +1,10 @@
+export interface ConnectionProps {
+ host: string;
+ port: number;
+};
+
+export const ConnectionPropsDefault: ConnectionProps = {
+ host: "localhost",
+ port: 9400,
+};
+