mirror of
https://github.com/danbulant/cushy
synced 2026-05-24 12:28:23 +00:00
7 lines
156 B
Rust
7 lines
156 B
Rust
use gooey::widget::Widget;
|
|
use gooey::widgets::Input;
|
|
use gooey::EventLoopError;
|
|
|
|
fn main() -> Result<(), EventLoopError> {
|
|
Input::new("Hello").run()
|
|
}
|