mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
9 lines
203 B
Rust
9 lines
203 B
Rust
use yazi_binding::position::{Offset, Origin, Position};
|
|
|
|
pub struct Help;
|
|
|
|
impl Help {
|
|
pub fn position() -> Position {
|
|
Position::new(Origin::Center, Offset { x: 0, y: 0, width: 80, height: 25 })
|
|
}
|
|
}
|