Files
2024-09-30 21:57:00 +00:00

15 lines
579 B
Rust

use bytes::Bytes;
use spacetimedb_client_api_messages::websocket::{BsatnFormat, ClientMessage, ServerMessage};
use spacetimedb_lib::ser::serde::SerializeWrapper;
use spacetimedb_lib::{RawModuleDef, RawModuleDefV8};
fn main() -> Result<(), serde_json::Error> {
let module = RawModuleDefV8::with_builder(|module| {
module.add_type::<ClientMessage<Bytes>>();
module.add_type::<ServerMessage<BsatnFormat>>();
});
let module = RawModuleDef::V8BackCompat(module);
serde_json::to_writer(std::io::stdout().lock(), SerializeWrapper::from_ref(&module))
}