blob: 326855ed301f721e9c02d4507a8516e5acc0297a [file] [log] [blame]
Paul Pendleburyf807c182011-04-05 11:24:34 -07001# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import utils
6
7
8class base_host_attributes(object):
9 def __init__(self, host):
10 pass
11
Paul Pendlebury7c1fdcf2011-05-04 12:39:15 -070012 def get_attributes(self):
13 return []
14
Paul Pendleburyf807c182011-04-05 11:24:34 -070015
16site_host_attributes = utils.import_site_class(
17 __file__, "autotest_lib.server.site_host_attributes",
18 "HostAttributes", base_host_attributes)
19
20
21class host_attributes(site_host_attributes):
Paul Pendlebury7c1fdcf2011-05-04 12:39:15 -070022 pass