Skip to content

Commit c2c78ca

Browse files
committed
chore(cli): add basic "Hello, world!" output to CLI entry point
Introduced a `main` function that logs "Hello, world!" to the console, providing a basic implementation for the CLI entry point. This serves as an initial scaffold for later functional enhancements and ensures the CLI produces visible output when executed.
1 parent ae7f758 commit c2c78ca

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/cli/src/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
11
#!/usr/bin/env node
2+
3+
function main(): void {
4+
console.log("Hello, world!");
5+
}
6+
7+
main();

0 commit comments

Comments
 (0)