Home | History | Annotate | Download | only in server
      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 
     12     def get_attributes(self):
     13         return []
     14 
     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):
     22     pass
     23