| 22 | |
| 23 | |
| 24 | class select(object): |
| 25 | def GET(self): |
| 26 | inputs = web.input() |
| 27 | json_result = json.dumps(sqlhelper.select(inputs.get('count', None), inputs)) |
| 28 | return json_result |
| 29 | |
| 30 | |
| 31 | class delete(object): |
nothing calls this directly
no outgoing calls
no test coverage detected