Skip to content

Commit

Permalink
added ROAM keyword to help
Browse files Browse the repository at this point in the history
  • Loading branch information
tidwall committed May 24, 2016
1 parent 2214cba commit d0fd48b
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 6 deletions.
40 changes: 37 additions & 3 deletions core/commands.json
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,43 @@
]
},
{
"command": "POINT",
"name": ["lat","lon","meters"],
"type": ["double","double","double"]
"name": "area",
"enumargs": [
{
"name": "POINT",
"arguments": [
{
"name": "lat",
"type": "double"
},
{
"name": "lon",
"type": "double"
},
{
"name": "meters",
"type": "double"
}
]
},
{
"name": "ROAM",
"arguments":[
{
"name": "key",
"type": "string"
},
{
"name": "pattern",
"type": "pattern"
},
{
"name": "meters",
"type": "double"
}
]
}
]
}
],
"since": "1.0.0",
Expand Down
40 changes: 37 additions & 3 deletions core/commands_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -531,9 +531,43 @@ var commandsJSON = `{
]
},
{
"command": "POINT",
"name": ["lat","lon","meters"],
"type": ["double","double","double"]
"name": "area",
"enumargs": [
{
"name": "POINT",
"arguments": [
{
"name": "lat",
"type": "double"
},
{
"name": "lon",
"type": "double"
},
{
"name": "meters",
"type": "double"
}
]
},
{
"name": "ROAM",
"arguments":[
{
"name": "key",
"type": "string"
},
{
"name": "pattern",
"type": "pattern"
},
{
"name": "meters",
"type": "double"
}
]
}
]
}
],
"since": "1.0.0",
Expand Down

0 comments on commit d0fd48b

Please sign in to comment.