From 98bab88e014e0fb8a9d689f9536f31316a09f9d9 Mon Sep 17 00:00:00 2001 From: frelodev Date: Sun, 3 Dec 2023 19:54:55 +0100 Subject: [PATCH] added user proto --- proto/user.proto | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 proto/user.proto diff --git a/proto/user.proto b/proto/user.proto new file mode 100644 index 0000000..1697d5d --- /dev/null +++ b/proto/user.proto @@ -0,0 +1,14 @@ +syntax = "proto3"; + +package user; + + +// payload identifying user +message UserIdentity { + // user identifier + string id = 1; +} + +service User{ + +} \ No newline at end of file