summaryrefslogtreecommitdiff
path: root/src/core/commands.rs
blob: 93bdd1e9f8acd8603f93e43a4343d42405acde7a (plain)
1
2
3
4
5
6
7
use std::sync::mpsc;

use crate::gdb;

pub enum CoreCmd {
    EnterDbgMode(mpsc::Receiver<gdb::DebugCommand>),
}