10 lines
259 B
Rust
10 lines
259 B
Rust
|
|
// Copyright 2023 System76 <info@system76.com>
|
||
|
|
// SPDX-License-Identifier: MPL-2.0
|
||
|
|
|
||
|
|
//! Create dialogs for retrieving user input.
|
||
|
|
|
||
|
|
pub use ashpd::desktop::file_chooser::{Choice, FileFilter, SelectedFiles};
|
||
|
|
pub use ashpd::WindowIdentifier;
|
||
|
|
|
||
|
|
pub mod open_file;
|