Add raw templater

This commit is contained in:
Jan
2022-09-05 23:25:11 +02:00
parent 4ef38264c8
commit 1464329245
21 changed files with 996 additions and 7 deletions

View File

@ -0,0 +1,7 @@
#include "RawTemplater.h"
int main(const int argc, const char** argv)
{
const RawTemplater rawTemplater;
return rawTemplater.Run(argc, argv);
}