generated from Hazel/python-project
8 lines
190 B
Python
8 lines
190 B
Python
from .__about__ import __name__, __version__
|
|
from . import Country
|
|
|
|
|
|
def cli():
|
|
print(f"Running {__name__} version {__version__} from __main__.py")
|
|
|
|
print(Country(country="DE").name) |