diff -r e223879aa02a -r d7e9a1200e21 src/repositories.h --- a/src/repositories.h Wed Feb 19 18:32:17 2025 +0100 +++ b/src/repositories.h Wed Feb 19 18:53:18 2025 +0100 @@ -36,7 +36,10 @@ struct repository final { std::string path; + std::string name; repository_type type; + repository(repository_type type, std::string path) noexcept; + ~repository() = default; }; class repositories final {