Source code for plynx.constants.collections

"""Standard PLynx collections in DB"""


[docs]class Collections: """All basic collections used in DB"""
[docs] NODE_CACHE: str = 'node_cache'
[docs] RUN_CANCELLATIONS: str = 'run_cancellations'
[docs] RUNS: str = 'runs'
[docs] TEMPLATES: str = 'templates'
[docs] USERS: str = 'users'
[docs] WORKER_STATE: str = 'worker_state'
# virtual collections:
[docs] HUB_NODE_REGISTRY: str = 'hub_node_registry'