tiny-routes icon indicating copy to clipboard operation
tiny-routes copied to clipboard

A tiny routing library for Common Lisp targeting Clack.

Results 1 tiny-routes issues
Sort by recently updated
recently updated
newest added

Sinatra allows matching against splat or wildcard parameters. Per their docs: ```ruby get '/say/*/to/*' do # matches /say/hello/to/world params['splat'] # => ["hello", "world"] end get '/download/*.*' do # matches /download/path/to/file.xml...

enhancement