ayon-core/pype/premiere/tests/example.py

18 lines
233 B
Python

import pico
from pico import PicoApp
@pico.expose()
def hello(who):
s = "hello %s!" % who
return s
@pico.expose()
def goodbye(who):
s = "goodbye %s!" % who
return s
app = PicoApp()
app.register_module(__name__)