shithub
tenseleyflow
/
fackr
/
Sign in
Sign up
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
fackr
Public
Watch
0
Fork
0
Star
0
fackr
/
src
/
terminal
/
mod.rs
Rust · 173 bytes
Raw
Blame
History
1
//! Integrated terminal panel
2
//!
3
//! Provides an embedded terminal emulator that can be toggled with Ctrl+`
4
5
mod
panel
;
6
mod
pty
;
7
mod
screen
;
8
9
pub
use
panel
::
TerminalPanel
;
10