zod 0.1.0

Rust integraions with the `zod` typescript library.
Documentation
1
2
3
4
5
6
7
8
9
use zod_core::rpc::codegen::ClientCodegen;

pub struct WebsocketClient;

impl ClientCodegen for WebsocketClient {
    fn get() -> String {
        String::from(include_str!("./static/websocket_client.ts"))
    }
}