Home | History | Annotate | Download | only in hosts
      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 
      5 Implementation details:
      6 You should 'import hosts' instead of importing every available host module.
      7 """
      8 
      9 from autotest_lib.client.common_lib import utils
     10 import base_classes
     11 
     12 Host = utils.import_site_class(
     13     __file__, "autotest_lib.client.common_lib.hosts.site_host", "SiteHost",
     14     base_classes.Host)
     15