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