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

commands: Request struct

parent f402d781
package commands
// Request represents a call to a command from a consumer
type Request struct {
options map[string]interface{}
}
/*func (r *Request) Option(name string) interface{} {
}
func (r *Request) Arguments() interface{} {
}*/
func NewRequest() *Request {
return &Request{
make(map[string]interface{}),
}
}
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