mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
7 lines
184 B
Python
7 lines
184 B
Python
import os
|
|
|
|
|
|
def get_ftrack_event_mongo_info():
|
|
database_name = os.environ["OPENPYPE_DATABASE_NAME"]
|
|
collection_name = "ftrack_events"
|
|
return database_name, collection_name
|