globuid 0.1.0

A globally unique ID generator with pluggable algorithms and transport layer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2026 GlobUid Contributors
// SPDX-License-Identifier: Apache-2.0

//! gRPC transport for GlobUid.

mod server;

pub use server::serve;

// Include generated proto code
pub mod proto {
    tonic::include_proto!("globuid");
}