oneuptime/ProbeAPI/Index.ts

10 lines
188 B
TypeScript
Raw Normal View History

2022-04-24 20:44:05 +00:00
import app from 'CommonServer/Utils/StartServer';
2022-04-20 20:14:44 +00:00
// API
import ProbeAPI from './API/Probe';
// Attach to the app.
app.use(['/probeapi/probe', '/probe'], ProbeAPI);
2022-02-25 13:22:20 +00:00
export default app;