mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 07:10:53 +00:00
10 lines
188 B
TypeScript
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;
|