opentalk-types-common 0.42.0

Common types and traits for OpenTalk crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//
// SPDX-License-Identifier: EUPL-1.2

//! Data types for handling shared folders.

/// The namespace string for the signaling module
pub const MODULE_ID: ModuleId = module_id!("shared_folder");

mod shared_folder;
mod shared_folder_access;

pub use shared_folder::SharedFolder;
pub use shared_folder_access::SharedFolderAccess;

use crate::modules::{ModuleId, module_id};