This commit is contained in:
Jev Kuznetsov
2025-09-15 09:09:40 +02:00
parent f6da3d9839
commit 27bb46e039
6 changed files with 33 additions and 75 deletions

View File

@@ -45,9 +45,10 @@ uv run pytest
## Usage
```python
from {{ cookiecutter.package_name }} import hello
from {{ cookiecutter.package_name }}.core import say_hello
print(hello())
say_hello() # prints: Hello, World!
say_hello("Alice") # prints: Hello, Alice!
```
## License