4 ms·
Author of Martini here. It's very cool to see community members explain concepts better than I can! I'm very excited to see where the golang community can take
by codegangsta 13y ago
Author of Martini here. It's very cool to see community members explain concepts better than I can! I'm very excited to see where the golang community can take this over time.
- Keyframe 13y agoInteresting! I just had a quick look at the video and was looking at request params. Does martini support optional params? For example: m.Get("/something/:optional?"... Something like Laravel's request parameters: http://laravel.com/docs/routing#route-parameters http://laravel.com/docs/routing#route-parameters or even route filters. Those would be suitable for that Auth demo, it looks like a filter, but would also be nice to have a group for routes and filter over those.
- codegangsta 13y agoWe just merged in a glob like feature for routes so you can accomplish things like route filtering or virtual servers. Eg m.Get("/hello/", ...)