oneuptime/ProbeAPI/Index.ts
Sostene Munezero Bagira e030cddc59 fix: compile errors
2022-04-24 22:44:05 +02:00

10 lines
188 B
TypeScript

import app from 'CommonServer/Utils/StartServer';
// API
import ProbeAPI from './API/Probe';
// Attach to the app.
app.use(['/probeapi/probe', '/probe'], ProbeAPI);
export default app;