Skip to main content

ocm_types/
lib.rs

1#![doc = include_str!("../README.md")]
2
3// SPDX-FileCopyrightText: 2026 Matthias Kraus <info@opengeomesh.org>
4//
5// SPDX-License-Identifier: LGPL-3.0-or-later
6
7/// This module contains types for the resources provided via the discovery
8/// endpoint.
9pub mod discovery;
10/// This module contains types to create a new share.
11pub mod share;
12/// Notifications to inform on changes to sent or received share.
13pub mod notification;
14/// Accept an out-of-band invite to establish trust between instances.
15pub mod invite;
16pub mod token;
17pub mod error;
18
19/// Contains types re-used in different parts of the protocol types.
20pub mod common;