added web challenge

This commit is contained in:
2024-03-01 18:21:45 +01:00
parent 4400d65c03
commit e9c312587d
11 changed files with 5257 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
syntax = "proto2";
message Note {
optional string title = 1 [default="user"];
optional string content = 2;
optional string author = 3 [default="user"];
}