filkoll/
lib.rs

1//! This is a bin+lib for technical code organisation reasons, do not use as a
2//! library. There is no guarantee of stability or API compatibility.
3
4// Export this for clap_mangen / clap_completions
5mod arch;
6mod interner;
7mod types;
8
9#[doc(hidden)]
10pub mod cli;
11#[doc(hidden)]
12pub mod lookup;
13#[doc(hidden)]
14pub mod update;
15
16/// Path to the cache directory
17pub(crate) const CACHE_PATH: &str = "/var/cache/filkoll";