• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 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
12    def get_attributes(self):
13        return []
14
15
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):
22    pass
23