mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-19 08:50:29 +00:00
12 lines
425 B
TypeScript
12 lines
425 B
TypeScript
import { InterchangeSystemBuilderArguments } from "../entities/InterchangeSystem";
|
|
import { ChapmanApiBasedParkingRepositoryLoader } from "./parking/ChapmanApiBasedParkingRepositoryLoader";
|
|
|
|
export const supportedIntegrationTestSystems: InterchangeSystemBuilderArguments[] = [
|
|
{
|
|
id: "1",
|
|
name: "Chapman University",
|
|
passioSystemId: "263",
|
|
parkingSystemId: ChapmanApiBasedParkingRepositoryLoader.id,
|
|
},
|
|
];
|