blob: a8c59d57577b7ebe6dd13063d68aea49fe86482c (
plain)
1
2
3
4
5
6
7
8
9
10
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "tools/rbd/Shell.h"
int main(int argc, const char **argv)
{
rbd::Shell shell;
return shell.execute(argc, argv);
}
|