mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-04-19 21:02:17 +03:00
13 lines
220 B
C++
13 lines
220 B
C++
//
|
|
// Copyright (C) 2018 Codership Oy <info@codership.com>
|
|
//
|
|
|
|
#include "db_params.hpp"
|
|
#include "db_simulator.hpp"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
db::simulator(db::parse_args(argc, argv)).run();
|
|
return 0;
|
|
}
|