blob: 92b1bf9c4bd99830b8c675211b6a1c977a96672d [file] [log] [blame] [edit]
// Copyright 2019 The ChromiumOS Authors
// 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 ChromeOS is in developer
// mode.
mod live_in_a_coal_mine;
mod shell;
use crate::dispatcher::Dispatcher;
pub fn register(dispatcher: &mut Dispatcher) {
live_in_a_coal_mine::register(dispatcher);
shell::register(dispatcher);
}