27 lines
718 B
Python
27 lines
718 B
Python
#
|
|
# Copyright 2007 Google Inc. Released under the GPL v2
|
|
|
|
"""This is a convenience module to import all available types of hosts.
|
|
|
|
Implementation details:
|
|
You should 'import hosts' instead of importing every available host module.
|
|
"""
|
|
|
|
|
|
# host abstract classes
|
|
from base_classes import Host
|
|
from remote import RemoteHost
|
|
|
|
# host implementation classes
|
|
from adb_host import ADBHost
|
|
from emulated_adb_host import EmulatedADBHost
|
|
from ssh_host import SSHHost
|
|
from cros_host import CrosHost
|
|
from chameleon_host import ChameleonHost
|
|
from servo_host import ServoHost
|
|
from testbed import TestBed
|
|
|
|
# factory function
|
|
from factory import create_host
|
|
from factory import create_testbed
|
|
from factory import create_target_machine
|