mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-14 19:38:41 -06:00
5 lines
102 B
Rust
5 lines
102 B
Rust
use std::num::NonZeroU8;
|
|
|
|
pub type ClientId = NonZeroU8;
|
|
pub const MAX_CLIENTS: usize = u8::MAX as _;
|