summaryrefslogtreecommitdiff
path: root/kel_cpp_boilerplate/c++/blueprints/gitignore.hpp
blob: d7d141e7e90800a5885c9b3e8da4d9115af642c2 (plain)
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*
)";