blob: 82534fd0096f1f493a0cdf2911c5a82498b57fdb [file] [log] [blame]
Kevin Chengee6030f2018-06-26 10:55:30 -07001#!/usr/bin/env python
2#
3# Copyright 2018 - The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16r"""Setup entry point.
17
18Setup will handle all of the necessary steps to enable acloud to create a local
19or remote instance of an Android Virtual Device.
20"""
21
22from __future__ import print_function
23
24
25def Run(args):
26 """Run setup.
27
28 Args:
29 args: Namespace object from argparse.parse_args.
30 """
31 # TODO: Delete once we're actually doing setup stuff.
32 print ("TODO: implement actual setup functions with these args: %s" % args)