16 lines
148 B
C++
16 lines
148 B
C++
/*
|
|
* Copyright 2014 Cloudius Systems
|
|
*/
|
|
|
|
|
|
#include "core/reactor.hh"
|
|
|
|
int main(int ac, char** av)
|
|
{
|
|
reactor r;
|
|
r.run();
|
|
return 0;
|
|
}
|
|
|
|
|