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