Skip to content

Commit

Permalink
c/ added new route
Browse files Browse the repository at this point in the history
  • Loading branch information
drspacemanphd committed Jul 11, 2022
1 parent 5a78507 commit c19ecbb
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 c19ecbb

Please sign in to comment.