opencloudmesh 0.2.1

Implementation of the OpenCloudMesh protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-FileCopyrightText: 2026 Matthias Kraus <info@opengeomesh.org>
//
// SPDX-License-Identifier: LGPL-3.0-or-later

/// Traits to provide users or groups
///
/// See [ocm-drivers](https://docs.rs/ocm-drivers/latest/ocm-drivers/users) for some exemplary implementations.
pub mod users;

/// Traits to store shares 
pub mod shares;

/// Traits to access sharable resources
pub mod resources;

/// Protocols for data transfer between OCM Servers
pub mod protocols;