aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-10-19 20:38:10 +0200
committerdefault <nobody@localhost>2024-10-19 20:38:10 +0200
commit5572bd0a9796188e1fbcd93d0a8a8ffdbcc4eeeb (patch)
treed804b527452c65ec8c7876b6c6517cafbec1f2ad /main.c
parent49b2a1d05cf8e03c960c0d34558397205b7cceda (diff)
Some work in CSV importing.
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/main.c b/main.c
index df696c0..dfcd65c 100644
--- a/main.c
+++ b/main.c
@@ -274,6 +274,11 @@ int main(int argc, char *argv[])
return 0;
}
+ if (strcmp(cmd, "import_csv") == 0) { /** **/
+ import_csv(&snac);
+ return 0;
+ }
+
if (strcmp(cmd, "migrate") == 0) { /** **/
return migrate_account(&snac);
}