| Line |
Branch |
Exec |
Source |
| 1 |
|
|
/** |
| 2 |
|
|
* This file is part of the CernVM File System |
| 3 |
|
|
* |
| 4 |
|
|
* This tool acts as an entry point for all the server-related |
| 5 |
|
|
* cvmfs tasks, such as uploading files and checking the sanity of |
| 6 |
|
|
* a repository. |
| 7 |
|
|
*/ |
| 8 |
|
|
|
| 9 |
|
|
#include "swissknife.h" |
| 10 |
|
|
|
| 11 |
|
|
#include <unistd.h> |
| 12 |
|
|
|
| 13 |
|
|
#include <cassert> |
| 14 |
|
|
#include <vector> |
| 15 |
|
|
|
| 16 |
|
|
#include "manifest.h" |
| 17 |
|
|
#include "manifest_fetch.h" |
| 18 |
|
|
#include "util/logging.h" |
| 19 |
|
|
|
| 20 |
|
|
using namespace std; // NOLINT |
| 21 |
|
|
|
| 22 |
|
|
namespace swissknife { |
| 23 |
|
|
|
| 24 |
|
✗ |
Command::Command() { } |
| 25 |
|
|
|
| 26 |
|
✗ |
Command::~Command() { } |
| 27 |
|
|
|
| 28 |
|
|
} // namespace swissknife |
| 29 |
|
|
|