This is increasingly not just related to screencopy, so it's weird to add there. I don't see any other module that fits, so add one called "quirks" (like the Linux kernel uses for device-specific handling in generic drives).
11 lines
201 B
Rust
11 lines
201 B
Rust
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
mod ids;
|
|
pub(crate) use self::ids::id_gen;
|
|
pub mod geometry;
|
|
pub mod iced;
|
|
pub mod prelude;
|
|
pub mod quirks;
|
|
pub mod rlimit;
|
|
pub mod screenshot;
|
|
pub mod tween;
|