Skip to content

Commit

Permalink
Merge pull request #26 from koopjs/c/4022-telemetry
Browse files Browse the repository at this point in the history
c/ added new route
  • Loading branch information
drspacemanphd committed Jul 11, 2022
2 parents 5a78507 + c19ecbb commit a037df5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ describe('Output Plugin', () => {
methods: ['get'],
handler: 'serve',
},
{
path: '/data.json',
methods: ['get'],
handler: 'serve',
},
]);
});

Expand Down
5 changes: 5 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ export = class OutputDcatUs11 {
methods: ['get'],
handler: 'serve',
},
{
path: '/data.json',
methods: ['get'],
handler: 'serve',
},
];

model: any;
Expand Down

0 comments on commit a037df5

Please sign in to comment.