Skip to content

Commit 83e930b

Browse files
committed
Added experimental script.
1 parent 954c6bd commit 83e930b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

scripts/authoring-client.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# /// script
2+
# requires-python = ">=3.11"
3+
# dependencies = [
4+
# "click",
5+
# ]
6+
# ///
7+
8+
import click
9+
10+
11+
@click.command()
12+
def main():
13+
print("Hello, world!")
14+
15+
16+
if __name__ == "__main__":
17+
main()

0 commit comments

Comments
 (0)