fedri_browser 0.1.0

A lightweight web engine bridge for WebKit2GTK on Linux.
Documentation
1
2
3
4
5
6
7
8
9
10
use fedri_browser::fedri_start;

fn main() {
    // English interface for Gello Browser
    let homepage = "https://duckduckgo.com/html";
    let title = "Hello | Fedri Web Engine";

    println!("Gello: Booting Fedri Engine...");
    fedri_start(homepage, title);
}