Skip to content

Commit

Permalink
TODO: implement message pack rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhongjia committed Jan 16, 2024
1 parent 03e5923 commit 55a3eb5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/rpc.zig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//! MessagePack RPC implemention with zig
//! https://github.com/msgpack-rpc/msgpack-rpc

const MessageType = enum(u2) {
Request = 0,
Response = 1,
Notification = 2,
};


0 comments on commit 55a3eb5

Please sign in to comment.