Home | History | Annotate | Download | only in update_payload
      1 # Copyright (c) 2013 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 """Library for processing, verifying and applying Chrome OS update payloads."""
      6 
      7 # Just raise the interface classes to the root namespace.
      8 from update_payload.checker import CHECKS_TO_DISABLE
      9 from update_payload.error import PayloadError
     10 from update_payload.payload import Payload
     11