20 lines
324 B
Python
20 lines
324 B
Python
# /// script
|
|
# requires-python = ">=3.12"
|
|
# dependencies = [
|
|
# "py-common-lib",
|
|
# ]
|
|
#
|
|
# [tool.uv.sources]
|
|
# py-common-lib = { git = "https://git.hatter.ink/hatter/py-common-lib.git", tag = "v0.0.0" }
|
|
# ///
|
|
|
|
from py_common_lib import hello
|
|
|
|
|
|
def main() -> None:
|
|
print(hello())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|