diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-11-14 19:49:52 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-11-14 19:49:52 -0500 |
commit | 4c0109a8c40012f75e3d0d900c0ef41893cfb4bb (patch) | |
tree | e0bf12ffbf5038963f6116250f04f9e820ff8927 /protocol/src | |
parent | d4650a3160d52d289686fb59efbf8f0a436b71eb (diff) |
Fetch table state from server
Diffstat (limited to 'protocol/src')
-rw-r--r-- | protocol/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocol/src/lib.rs b/protocol/src/lib.rs index 4b1bb06..4294e17 100644 --- a/protocol/src/lib.rs +++ b/protocol/src/lib.rs @@ -11,3 +11,7 @@ pub struct UserInfo { pub struct Table { pub id: Uuid, } + +#[derive(Serialize, Deserialize, PartialEq, Eq, Clone, Debug)] +pub struct TableView { +} |