taiga/src/action/help.c
NishiOwO adaa379cfa
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good
add help
2026-03-10 03:28:59 +09:00

10 lines
330 B
C

#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");
printf(" markdown Converts Markdown document to Taiga document\n");
return 0;
}