String extractor
Extract values from *http.Request or http.ResponseWriter
If you want to extract a value based on a tag name you can create your own string extractor.
You just need to implement this interface:
Then before declaring your routes add your interface implementation to the list of StringsExtractors in the config.
Like that:
Last updated