From 91f0b2fb22325f0f5fcc8077f0abb6684b156f3c Mon Sep 17 00:00:00 2001 From: Nell Hardcastle Date: Thu, 5 Sep 2024 11:39:53 -0700 Subject: [PATCH] chore(cli): Add a docstring for the command line entrypoint --- cli/mod.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/mod.ts b/cli/mod.ts index 3b4d66f90..99ef8ca6e 100644 --- a/cli/mod.ts +++ b/cli/mod.ts @@ -10,6 +10,9 @@ Sentry.init({ }) import { commandLine } from "./src/options.ts" +/** + * Entrypoint for running OpenNeuro command line tools + */ export async function main() { await commandLine(Deno.args) }