mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
12 lines
219 B
Python
12 lines
219 B
Python
from .asapublish_module import ASAPublishModule
|
|
from .app import (
|
|
show,
|
|
cli
|
|
)
|
|
__all__ = [
|
|
"show",
|
|
"cli"
|
|
]
|
|
|
|
def tray_init(tray_widget, main_widget):
|
|
return ASAPublishModule(main_widget, tray_widget)
|