blob: 32585bd5933892b558b6da9c09906e359ce41efd [file] [log] [blame]
Matt Spinlerbf7fca72022-05-03 10:51:52 -05001import os
2
3
4def get_registry_path() -> str:
5 return os.path.join(os.path.dirname(__file__),
6 'message_registry.json')
7
8
9def get_comp_id_file_path(creatorID: str) -> str:
10 return os.path.join(os.path.dirname(__file__),
11 creatorID + '_component_ids.json')