code-moniker 0.4.0

Standalone CLI / linter for the code-moniker symbol graph: file and directory probes, project-wide architecture rules.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Runtime commands interpreted by the shell/runtime boundary.

use crate::ui::app::View;

#[derive(Debug)]
pub(in crate::ui) enum Effect {
	ShowView(View),
	Quit,
	DebounceHeaderSearch(u64),
	CopyPanelSnapshot,
	RunCheck,
	RefreshWorkspace,
}