mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-17 07:50:31 +00:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import { ISystem } from "../src/entities/entities";
|
|
|
|
|
|
export function generateMockSystems(): ISystem[] {
|
|
return [
|
|
{ id: "1", name: "System A" },
|
|
{ id: "2", name: "System B" },
|
|
{ id: "3", name: "System C" },
|
|
];
|
|
} |