def is_secrets_engine_enabled()

in modular_cli_sdk/client/ssm_client.py [0:0]


    def is_secrets_engine_enabled(self, mount_point=None) -> bool:
        mount_points = self.client.sys.list_mounted_secrets_engines()
        target_point = mount_point or self.mount_point
        return f'{target_point}/' in mount_points