Commit 4e5456c0 authored by Matt Bell's avatar Matt Bell Committed by Juan Batiz-Benet

commands: Added Request#SetPath method

parent f0ea3554
......@@ -11,6 +11,10 @@ func (r *Request) Path() []string {
return r.path
}
func (r *Request) SetPath(path []string) {
r.path = path
}
func (r *Request) Option(name string) interface{} {
return r.options[name]
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment