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"""A package for all the built in commands.
6
7This package has all the standard commands built in to the cr tool.
8Most commands use actions to perform the real work.
9"""
10
11import cr
12
13cr.Import(__name__, 'command')
14cr.Import(__name__, 'prepare')
15cr.Import(__name__, 'init')
16