1# Copyright 2013 The Chromium 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"""Chromium cr tool module.
6
7This is the root module of all the cr code.
8Commonly accessed elements, including all plugins, are promoted into this
9module.
10"""
11
12import cr.loader
13from cr.loader import Import
14
15Import(__name__, 'auto.user')
16Import(__name__, 'autocomplete')
17Import(__name__, 'config')
18Import(__name__, 'plugin')
19Import(__name__, 'base')
20Import(__name__, 'commands')
21Import(__name__, 'actions')
22