Remove non-documentation lint
Because of extensive nature of changes, tested all three non-memstore backends - passed.
This commit is contained in:
parent
6614466d23
commit
484bf145a8
35 changed files with 277 additions and 284 deletions
|
|
@ -32,14 +32,14 @@ type Session interface {
|
|||
ToggleDebug()
|
||||
}
|
||||
|
||||
type HttpSession interface {
|
||||
type HTTP interface {
|
||||
// Return whether the string is a valid expression.
|
||||
InputParses(string) (ParseResult, error)
|
||||
// Runs the query and returns individual results on the channel.
|
||||
ExecInput(string, chan interface{}, int)
|
||||
GetQuery(string, chan map[string]interface{})
|
||||
BuildJson(interface{})
|
||||
GetJson() ([]interface{}, error)
|
||||
ClearJson()
|
||||
BuildJSON(interface{})
|
||||
GetJSON() ([]interface{}, error)
|
||||
ClearJSON()
|
||||
ToggleDebug()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue