GCC Code Coverage Report


Directory: cvmfs/
File: cvmfs/notify/publisher.cc
Date: 2024-04-28 02:33:07
Exec Total Coverage
Lines: 0 3 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /**
2 * This file is part of the CernVM File System.
3 */
4
5 #include "publisher.h"
6
7 #include <ctime>
8
9 #include "util/string.h"
10
11 namespace notify {
12
13 Publisher::~Publisher() {}
14
15 bool Publisher::Init() { return true; }
16
17 bool Publisher::Finalize() { return true; }
18
19 } // namespace notify
20