blob: 0308d5493ffb9c6dac48eb38694493e3f32bc5ae [file] [log] [blame]
# Copyright 2016 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""CLI entry point into lib/vm.py; used for VM management."""
import logging
from chromite.scripts import cros
def main(argv) -> None:
# TODO(2024-07-01): Delete this script.
logging.notice(
"`cros_vm` is deprecated in favor of `cros vm`, and will be removed on "
"July 1, 2024. Please update your scripts and begin using that instead."
)
cros.main(["vm", *argv])