Paul Pendlebury | f807c18 | 2011-04-05 11:24:34 -0700 | [diff] [blame] | 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 | |
| 5 | import utils |
| 6 | |
| 7 | |
| 8 | class base_host_attributes(object): |
| 9 | def __init__(self, host): |
| 10 | pass |
| 11 | |
Paul Pendlebury | 7c1fdcf | 2011-05-04 12:39:15 -0700 | [diff] [blame] | 12 | def get_attributes(self): |
| 13 | return [] |
| 14 | |
Paul Pendlebury | f807c18 | 2011-04-05 11:24:34 -0700 | [diff] [blame] | 15 | |
| 16 | site_host_attributes = utils.import_site_class( |
| 17 | __file__, "autotest_lib.server.site_host_attributes", |
| 18 | "HostAttributes", base_host_attributes) |
| 19 | |
| 20 | |
| 21 | class host_attributes(site_host_attributes): |
Paul Pendlebury | 7c1fdcf | 2011-05-04 12:39:15 -0700 | [diff] [blame] | 22 | pass |