aboutsummaryrefslogtreecommitdiff
path: root/core/http/props.ts
blob: d69ae557daddd1b754be6b094258b566fe6b5d09 (plain)
1
2
3
4
5
6
7
8
9
10
export interface ConnectionProps {
	host: string;
	port: number;
};

export const ConnectionPropsDefault: ConnectionProps = {
	host: "localhost",
	port: 9400,
};