add actions

This commit is contained in:
Nishi 2026-03-01 22:43:41 +09:00
commit 3bb222a532
Signed by: nishi
GPG key ID: 27EF69B208EB9343
6 changed files with 40 additions and 1 deletions

9
src/help.c Normal file
View file

@ -0,0 +1,9 @@
#include <taiga.h>
int action_help(int argc, char** argv){
printf("Actions:\n");
printf(" help Show this help\n");
printf(" seed Creates a new website\n");
printf(" site Builds an website (default action)\n");
return 0;
}