| 32 | struct Buffer {}; |
| 33 | |
| 34 | cti::continuable<ResultSet> mysql_query(std::string /*url*/) { |
| 35 | return cti::make_ready_continuable(ResultSet{}); |
| 36 | } |
| 37 | |
| 38 | cti::continuable<Buffer> read_file(std::string /*url*/) { |
| 39 | return cti::make_ready_continuable(Buffer{}); |
no test coverage detected