Skip to content

Commit

Permalink
add non-api prefix route to realtime
Browse files Browse the repository at this point in the history
  • Loading branch information
Andykmcc committed Apr 25, 2024
1 parent 1bbab9c commit c416def
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ app.use((req, res, next) => {
app.use('/v1/config', geoConfigRouter);
app.use('/api/v1/config', geoConfigRouter);

app.use('/v1/realtime', realtimeRouter);
app.use('/api/v1/realtime', realtimeRouter);

// generic API path so we don't have a leaky abstraction
Expand Down

0 comments on commit c416def

Please sign in to comment.