ocm-types 0.2.1

Types required to implement the OpenCloudMesh filesharing protocol
Documentation
#![doc = include_str!("../README.md")]

// SPDX-FileCopyrightText: 2026 Matthias Kraus <info@opengeomesh.org>
//
// SPDX-License-Identifier: LGPL-3.0-or-later

/// This module contains types for the resources provided via the discovery
/// endpoint.
pub mod discovery;
/// This module contains types to create a new share.
pub mod share;
/// Notifications to inform on changes to sent or received share.
pub mod notification;
/// Accept an out-of-band invite to establish trust between instances.
pub mod invite;
pub mod token;
pub mod error;

/// Contains types re-used in different parts of the protocol types.
pub mod common;