diff options
| -rw-r--r-- | src/app.ts | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -8,6 +8,9 @@ export async function app() { await countries.sync(); switch (command) { + case undefined: + help(); + break; case "sync": await countries.sync({ force: true }); break; |
