| 133 | } |
| 134 | |
| 135 | struct DropDatabaseCmd { |
| 136 | static const char* name; |
| 137 | static Future<Reference<ExtMsgReply>> call(Reference<ExtConnection> ec, |
| 138 | Reference<ExtMsgQuery> query, |
| 139 | Reference<ExtMsgReply> reply) { |
| 140 | return doDropDatabase(ec, query, reply); |
| 141 | } |
| 142 | }; |
| 143 | REGISTER_CMD(DropDatabaseCmd, "dropdatabase"); |
| 144 | |
| 145 | struct WhatsmyuriCmd { |
nothing calls this directly
no outgoing calls
no test coverage detected