Yoda 0.1.0

Yoda - Browser for Gemini protocol
1
2
3
4
5
6
7
8
9
use gtk4 as gtk;
use gtk::Box;

pub fn new() -> Box
{
    return Box::builder().orientation(
        gtk::Orientation::Vertical
    ).build();
}