mirror of
https://github.com/danbulant/cushy
synced 2026-05-24 20:32:28 +00:00
6 lines
128 B
Rust
6 lines
128 B
Rust
use gooey::widgets::{Expand, Input};
|
|
use gooey::Run;
|
|
|
|
fn main() -> gooey::Result {
|
|
Expand::new(Input::new("Hello")).run()
|
|
}
|