mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-05-24 13:45:03 +00:00
19 lines
359 B
Python
Executable File
19 lines
359 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Required parameters:
|
|
# @raycast.schemaVersion 1
|
|
# @raycast.title Test Py Script
|
|
# @raycast.mode compact
|
|
|
|
# Optional parameters:
|
|
# @raycast.icon 🤖
|
|
# @raycast.packageName pypy
|
|
|
|
# Documentation:
|
|
# @raycast.description py py py
|
|
# @raycast.author huakunshen
|
|
# @raycast.authorURL https://raycast.com/huakunshen
|
|
|
|
print("Hello World!")
|
|
|