diff options
author | rtkay123 <dev@kanjala.com> | 2025-08-10 12:09:22 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-08-10 12:09:27 +0200 |
commit | af407fe5c3e1d5b8b315db029805fa7290c83fae (patch) | |
tree | c6cde42d7e05453b0be99fa5c3f181fc843ab76a /proto/pseudonyms/account.proto | |
parent | d50185df5a5870498b6c7e6b51e0368d051743ca (diff) | |
download | warden-af407fe5c3e1d5b8b315db029805fa7290c83fae.tar.bz2 warden-af407fe5c3e1d5b8b315db029805fa7290c83fae.zip |
feat(pseudonyms): proto definitions
Diffstat (limited to 'proto/pseudonyms/account.proto')
-rw-r--r-- | proto/pseudonyms/account.proto | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/proto/pseudonyms/account.proto b/proto/pseudonyms/account.proto new file mode 100644 index 0000000..bdca80c --- /dev/null +++ b/proto/pseudonyms/account.proto @@ -0,0 +1,15 @@ +syntax = "proto3"; + +package pseudonyms.account; + +import "google/protobuf/timestamp.proto"; + +message Account { + string id = 1; +} + +message CreateAccount { + string id = 1; + string account_id = 2; + google.protobuf.Timestamp cre_dt_tm = 3; +} |