mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 05:57:21 -05:00
18 lines
317 B
TypeScript
18 lines
317 B
TypeScript
import { SERVICE_BASE_URL, SERVICE_ID, SERVICE_NAME } from "./src/constants";
|
|
|
|
export const services = {
|
|
[SERVICE_ID]: {
|
|
name: SERVICE_NAME,
|
|
id: SERVICE_ID,
|
|
baseUrl: SERVICE_BASE_URL
|
|
}
|
|
};
|
|
|
|
export type ServiceDescriptor = {
|
|
name: string;
|
|
id: string;
|
|
baseUrl: string;
|
|
};
|
|
|
|
export default services;
|