From 326fcd1b1770fcb597d716af2b722c8971453344 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Thu, 15 Jan 2026 12:19:52 +0100 Subject: Add Document support --- src/constants.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/constants.rs') diff --git a/src/constants.rs b/src/constants.rs index 2292b66..d163b45 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -1,3 +1,7 @@ pub const MIN_ZOOM: f64 = 0.1; pub const MAX_ZOOM: f64 = 2.0; pub const ZOOM_STEP: f64 = 0.1; + +pub const FILE_EXTENSION: &str = "wmap"; +pub const MIME_TYPE: &str = "application/vnd.wmap"; +pub const APP_NAME: &str = "Map"; -- cgit