ipkn / crow

Crow is very fast and easy to use C++ micro web framework (inspired by Python Flask)
BSD 3-Clause "New" or "Revised" License
7.46k stars 889 forks source link

How to make router entry for all paths? #349

Open Morritz opened 4 years ago

Morritz commented 4 years ago

I want to be able to make entry for all paths like in ExpressJS. app.get('*', function(req, res) { ... });