• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2009 Google Inc. Released under the GPL v2
2
3"""This is a convenience module to import all available types of hosts.
4
5Implementation details:
6You should 'import hosts' instead of importing every available host module.
7"""
8
9from autotest_lib.client.common_lib import utils
10try:
11    from autotest_lib.client.common_lib.hosts.base_classes import Host
12    from autotest_lib.client.common_lib.hosts.repair import *
13except ImportError:
14    from base_classes import Host
15    from repair import *
16