2022-03-07 15:04:14 -05:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate relm4;
|
|
|
|
|
|
2022-03-07 17:37:40 -05:00
|
|
|
mod app;
|
|
|
|
|
|
2022-03-07 15:04:14 -05:00
|
|
|
use once_cell::sync::Lazy;
|
|
|
|
|
use tokio::runtime::Runtime;
|
|
|
|
|
|
|
|
|
|
static RT: Lazy<Runtime> = Lazy::new(|| Runtime::new().expect("failed to build tokio runtime"));
|
|
|
|
|
|
2022-03-07 11:15:20 -05:00
|
|
|
fn main() {
|
|
|
|
|
println!("Hello, world!");
|
|
|
|
|
}
|