blob: 21f916bbdbef1fe0edbb7d05b78c491c5832018c [file] [log] [blame]
Matt Spinlerbf7fca72022-05-03 10:51:52 -05001import os
2
3
4def get_registry_path() -> str:
Patrick Williamse6555f52022-08-04 13:56:17 -05005 return os.path.join(os.path.dirname(__file__), "message_registry.json")
Matt Spinlerbf7fca72022-05-03 10:51:52 -05006
7
8def get_comp_id_file_path(creatorID: str) -> str:
Patrick Williamse6555f52022-08-04 13:56:17 -05009 return os.path.join(
10 os.path.dirname(__file__), creatorID + "_component_ids.json"
11 )