blob: 8cd0aef4ab277d35204fc940e452f2745bf16af3 [file] [log] [blame]
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# 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."""
from chromite.lib import vm
def main(argv):
opts = vm.VM.GetParser().parse_args(argv)
opts.Freeze()
vm.VM(opts).Run()