diff options
| author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-21 15:45:14 -0500 |
|---|---|---|
| committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-21 15:45:14 -0500 |
| commit | f41ca04fbeba396fe89a4279382882260f8bc645 (patch) | |
| tree | 3c87d8ace600c86dd2b41dcf45dde12c878ba4fa /src/api | |
| parent | start backend (diff) | |
| download | xssbook-f41ca04fbeba396fe89a4279382882260f8bc645.tar.gz xssbook-f41ca04fbeba396fe89a4279382882260f8bc645.tar.bz2 xssbook-f41ca04fbeba396fe89a4279382882260f8bc645.zip | |
rate limit shit
Diffstat (limited to '')
| -rw-r--r-- | src/api.js | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -6,4 +6,9 @@ router.get('/', (req, res) => { res.status(200).send( {msg: 'xssbook api'} ) }) +router.post('/', (req, res) => { + res.status(200).send( {msg: 'xssbook api'} ) +}) + + module.exports = router;
\ No newline at end of file |