hypershell_components/dsl/
json.rs

1use core::marker::PhantomData;
2
3pub struct DecodeJson<T>(pub PhantomData<T>);
4
5pub struct EncodeJson;