diff options
| author | default <nobody@localhost> | 2024-10-19 20:38:10 +0200 |
|---|---|---|
| committer | default <nobody@localhost> | 2024-10-19 20:38:10 +0200 |
| commit | 5572bd0a9796188e1fbcd93d0a8a8ffdbcc4eeeb (patch) | |
| tree | d804b527452c65ec8c7876b6c6517cafbec1f2ad /main.c | |
| parent | 49b2a1d05cf8e03c960c0d34558397205b7cceda (diff) | |
Some work in CSV importing.
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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); } |