code: cpp,hpp,dbal (7 files)

This commit is contained in:
2025-12-26 00:50:48 +00:00
parent 6cf27dc561
commit 89083a5068
7 changed files with 276 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#include <iostream>
#include <string>
int main(int argc, char** argv) {
std::string project = "starter-app";
if (argc > 1 && argv[1] != nullptr) {
project = argv[1];
}
std::cout << "Codegen Studio CLI" << std::endl;
std::cout << "Project: " << project << std::endl;
std::cout << "Zip entries:" << std::endl;
std::cout << "- " << project << "/README.md" << std::endl;
std::cout << "- " << project << "/package.json" << std::endl;
std::cout << "- " << project << "/src/app/page.tsx" << std::endl;
return 0;
}