| Directory: | cvmfs/ |
|---|---|
| File: | cvmfs/swissknife.cc |
| Date: | 2026-04-26 02:35:59 |
| Exec | Total | Coverage | |
|---|---|---|---|
| Lines: | 0 | 2 | 0.0% |
| Branches: | 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 | |||
| 11 | #include <unistd.h> | ||
| 12 | |||
| 13 | #include <cassert> | ||
| 14 | |||
| 15 | using namespace std; // NOLINT | ||
| 16 | |||
| 17 | namespace swissknife { | ||
| 18 | |||
| 19 | ✗ | Command::Command() { } | |
| 20 | |||
| 21 | ✗ | Command::~Command() { } | |
| 22 | |||
| 23 | } // namespace swissknife | ||
| 24 |