diff options
| author | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-01-15 12:19:52 +0100 |
|---|---|---|
| committer | Rubén Beltrán del Río <jj@r.bdr.sh> | 2026-01-15 19:44:59 +0100 |
| commit | 326fcd1b1770fcb597d716af2b722c8971453344 (patch) | |
| tree | 47aa30750586925f2c92a8746e43e77512515ccd /src/constants.rs | |
| parent | 727dd5db0a123e57e3873a90705a90c849b95b77 (diff) | |
Add Document support
Diffstat (limited to 'src/constants.rs')
| -rw-r--r-- | src/constants.rs | 4 |
1 files changed, 4 insertions, 0 deletions
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"; |