blob: 3c515753af396b766101ddb115327f5c6e7d8440 [file] [log] [blame]
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Chromium cr tool module.
This is the root module of all the cr code.
Commonly accessed elements, including all plugins, are promoted into this
module.
"""
import cr.loader
from cr.loader import Import
Import(__name__, 'auto.user')
Import(__name__, 'autocomplete')
Import(__name__, 'config')
Import(__name__, 'plugin')
Import(__name__, 'base')
Import(__name__, 'commands')
Import(__name__, 'actions')