blob: e065821d2959f8b85730121e75e55ec3484e4e71 [file] [log] [blame]
mblighf83a5a22009-08-26 23:38:17 +00001# 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
10import base_classes
11
12Host = utils.import_site_class(
13 __file__, "autotest_lib.client.common_lib.hosts.site_host", "SiteHost",
14 base_classes.Host)