add Params for input

This commit is contained in:
astaxie 2016-01-08 01:20:34 +08:00
parent c68505e451
commit 9167587929
1 changed files with 11 additions and 0 deletions

View File

@ -274,6 +274,17 @@ func (input *BeegoInput) Param(key string) string {
return ""
}
// Params returns the map[key]value.
func (input *BeegoInput) Params() map[string]string {
m := make(map[string]string)
for i, v := range input.pnames {
if i <= len(input.pvalues) {
m[v] = input.pvalues[i]
}
}
return m
}
// SetParam will set the param with key and value
func (input *BeegoInput) SetParam(key, val string) {
input.pvalues = append(input.pvalues, val)