blob: f83a97a94f36fa142e858b5965703e932c810263 [file] [log] [blame]
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// The dev module handles registration of crosh commands only enabled when Chrome OS is in developer
// mode.
mod shell;
use crate::dispatcher::Dispatcher;
pub fn register(dispatcher: &mut Dispatcher) {
shell::register(dispatcher);
}