mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
12 lines
224 B
TypeScript
12 lines
224 B
TypeScript
import axios from "axios";
|
|
|
|
export const HTTP_URL = "http://[::1]:5000/";
|
|
|
|
export const backend = axios.create({
|
|
baseURL: HTTP_URL,
|
|
});
|
|
|
|
export const WEBSOCKET_URL = "ws://[::1]:5000/eventstream";
|
|
|
|
export default backend;
|