GCC Code Coverage Report
Directory: cvmfs/ Exec Total Coverage
File: cvmfs/swissknife.cc Lines: 0 2 0.0 %
Date: 2019-02-03 02:48:13 Branches: 0 2 0.0 %

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
#include "cvmfs_config.h"
11
12
#include <unistd.h>
13
14
#include <cassert>
15
#include <vector>
16
17
#include "logging.h"
18
#include "manifest.h"
19
#include "manifest_fetch.h"
20
21
using namespace std;  // NOLINT
22
23
namespace swissknife {
24
25
Command::Command() {}
26
27
Command::~Command() {}
28
29
}  // namespace swissknife