summaryrefslogtreecommitdiff
path: root/kel_cpp_boilerplate/c++/blueprints/gitignore.hpp
blob: b09b15396bf532eace15fd96ef5229166aac66cc (plain)
1
2
3
4
5
6
7
8
#pragma once
#include <string_view>

constexpr std::string_view gitignore_file_name = ".gitignore";

constexpr std::string_view gitignore_file_content = R"(
result*
)";