blob: a0cce7553b816a77f3c96d8647768147a3609796 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <iostream>
#include <seastar/core/app-template.hh>
#include <seastar/core/future.hh>
namespace sr = seastar;
int main(int argc, char** argv) {
sr::app_template app;
return app.run(argc, argv, [] {
std::cout << "\"Hello\" from the Seastar pkg-config consumer!\n";
return sr::make_ready_future<>();
});
}
|