mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
17 lines
460 B
Python
17 lines
460 B
Python
from .constants import (
|
|
CLOCKIFY_ENDPOINT,
|
|
ADMIN_PERMISSION_NAMES,
|
|
CREDENTIALS_JSON_PATH,
|
|
CLOCKIFY_FTRACK_USER_PATH,
|
|
CLOCKIFY_FTRACK_SERVER_PATH
|
|
)
|
|
from .clockify_api import ClockifyAPI
|
|
from .widget_settings import ClockifySettings
|
|
from .widget_message import MessageWidget
|
|
from .clockify import ClockifyModule
|
|
|
|
CLASS_DEFINIION = ClockifyModule
|
|
|
|
|
|
def tray_init(tray_widget, main_widget):
|
|
return ClockifyModule(main_widget, tray_widget)
|