85 lines
2.2 KiB
JavaScript
85 lines
2.2 KiB
JavaScript
const defaultServices = [
|
|
{
|
|
"id": 1,
|
|
"created_at": "2024-03-06T17:31:31.948355541+03:00",
|
|
"updated_at": "2024-03-06T17:31:31.948355541+03:00",
|
|
"deleted_at": null,
|
|
"name": "jsonplaceholder.typicode.com",
|
|
"port": 9965,
|
|
"proxy_ip": "172.25.78.153",
|
|
"site_ip": "https://jsonplaceholder.typicode.com/",
|
|
"internet_uri": "localhost",
|
|
"description": "localhost",
|
|
"is_online": true
|
|
},
|
|
{
|
|
"id": 2,
|
|
"created_at": "2024-03-07T11:43:51.026265459+03:00",
|
|
"updated_at": "2024-03-07T13:35:12.506368972+03:00",
|
|
"deleted_at": null,
|
|
"name": "new 2",
|
|
"port": 4548,
|
|
"proxy_ip": "172.25.78.151",
|
|
"site_ip": "172.25.78.151",
|
|
"internet_uri": "",
|
|
"description": "new site 2",
|
|
"is_online": true
|
|
},
|
|
{
|
|
"id": 3,
|
|
"created_at": "2024-03-07T11:43:51.027148541+03:00",
|
|
"updated_at": "2024-03-07T13:35:24.919273428+03:00",
|
|
"deleted_at": null,
|
|
"name": "new 3",
|
|
"port": 2527,
|
|
"proxy_ip": "172.25.78.151",
|
|
"site_ip": "172.25.78.151",
|
|
"internet_uri": "",
|
|
"description": "new site 3...",
|
|
"is_online": true
|
|
}
|
|
]
|
|
|
|
const resServices = [
|
|
{
|
|
"id": 1,
|
|
"createdAt": "2024-03-06T17:31:31.948355541+03:00",
|
|
"updatedAt": "2024-03-06T17:31:31.948355541+03:00",
|
|
"deletedAt": null,
|
|
"name": "jsonplaceholder.typicode.com",
|
|
"port": 9965,
|
|
"proxyIp": "172.25.78.153",
|
|
"deviceIp": "https://jsonplaceholder.typicode.com/",
|
|
"internetUri": "localhost",
|
|
"description": "localhost",
|
|
"isOnline": true
|
|
},
|
|
{
|
|
"id": 2,
|
|
"createdAt": "2024-03-07T11:43:51.026265459+03:00",
|
|
"updatedAt": "2024-03-07T13:35:12.506368972+03:00",
|
|
"deletedAt": null,
|
|
"name": "new 2",
|
|
"port": 4548,
|
|
"proxyIp": "172.25.78.151",
|
|
"deviceIp": "172.25.78.151",
|
|
"internetUri": "",
|
|
"description": "new site 2",
|
|
"isOnline": true
|
|
},
|
|
{
|
|
"id": 3,
|
|
"createdAt": "2024-03-07T11:43:51.027148541+03:00",
|
|
"updatedAt": "2024-03-07T13:35:24.919273428+03:00",
|
|
"deletedAt": null,
|
|
"name": "new 3",
|
|
"port": 2527,
|
|
"proxyIp": "172.25.78.151",
|
|
"deviceIp": "172.25.78.151",
|
|
"internetUri": "",
|
|
"description": "new site 3...",
|
|
"isOnline": true
|
|
}
|
|
]
|
|
|
|
export { defaultServices, resServices } |