]> git.proxmox.com Git - ceph.git/blame - ceph/src/seastar/tests/dist/consumer/cmake_consumer.cc
update download target update for octopus release
[ceph.git] / ceph / src / seastar / tests / dist / consumer / cmake_consumer.cc
CommitLineData
11fdf7f2
TL
1#include <iostream>
2
3#include <seastar/core/app-template.hh>
4#include <seastar/core/future.hh>
5
6namespace sr = seastar;
7
8int main(int argc, char** argv) {
9 sr::app_template app;
10
11 return app.run(argc, argv, [] {
12 std::cout << "\"Hello\" from the Seastar CMake consumer!\n";
13 return sr::make_ready_future<>();
14 });
15}