Sign in
apache
/
buildstream
/
refs/heads/phil/plugin-testing-api
/
.
/
tests
/
integration
/
project
/
files
/
pip-source
/
app1.py
blob: ab1005ba44e52f831b94870589692187e5fb28be [
file
]
#!/usr/bin/env python3
from
hellolib
import
hello
def
main
():
hello
(
'App1'
)
if
__name__
==
'__main__'
:
main
()