"""Define the comps cli spec.Notes: - We eventually need to deprecate thisCopyright 2021, Bill & Melinda Gates Foundation. All rights reserved."""try:# since cli is not required but we always try to load file, wrap in try exceptfromtypingimportNoReturnfromidmtools.registry.plugin_specificationimportget_description_implfromidmtools_cli.iplatform_cliimportIPlatformCLI,PlatformCLISpecification,get_platform_cli_impl, \
get_additional_commands_impl
[docs]classCompsCLI(IPlatformCLI):"""Defines our CLI interface for COMPS using IPlatformCLI."""
[docs]defget_experiment_status(self,*args,**kwargs)->NoReturn:"""Experiment status command."""pass
[docs]defget_simulation_status(self,*args,**kwargs)->NoReturn:"""Simulation status command."""pass