mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-06 09:54:53 +01:00
8 lines
181 B
Rust
8 lines
181 B
Rust
|
//! Newtype and helper methods for handling Minecraft Raw JSON Text
|
||
|
|
||
|
use serde::Deserialize;
|
||
|
|
||
|
/// Minecraft Raw JSON Text
|
||
|
#[derive(Debug, Deserialize)]
|
||
|
pub struct JSONText(String);
|