1 2 3 4 5 6 7 8
#pragma once #include <string_view> constexpr std::string_view gitignore_file_path = ".gitignore"; constexpr std::string_view gitignore_file_content = R"(result* )";