2019-12-22 20:41:45 +00:00
|
|
|
#![allow(unused_must_use)]
|
|
|
|
|
|
|
|
#[macro_use]
|
2019-12-23 19:57:40 +00:00
|
|
|
pub mod utils;
|
2019-12-23 08:22:08 +00:00
|
|
|
pub mod bookmarks;
|
2019-12-23 08:24:28 +00:00
|
|
|
pub mod config;
|
2019-12-23 19:57:40 +00:00
|
|
|
pub mod gopher;
|
2019-12-22 20:41:45 +00:00
|
|
|
pub mod help;
|
|
|
|
pub mod history;
|
|
|
|
pub mod menu;
|
|
|
|
pub mod text;
|
|
|
|
pub mod ui;
|
2019-12-24 08:29:20 +00:00
|
|
|
|
2019-12-25 01:22:12 +00:00
|
|
|
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
2020-01-04 22:10:51 +00:00
|
|
|
pub const PLATFORM: &str = env!("PLATFORM");
|
2020-01-04 18:15:51 +00:00
|
|
|
pub const BUG_URL: &str = "https://github.com/dvkt/phetch/issues/new";
|