-
Notifications
You must be signed in to change notification settings - Fork 2
Add web
frontend to hello-world
example
#8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,32 +9,31 @@ import "resemble/v1alpha1/options.proto"; | |
service Greeter { | ||
option (resemble.v1alpha1.service).state = "GreeterState"; | ||
|
||
rpc Create(CreateRequest) returns (CreateResponse) { | ||
option (resemble.v1alpha1.method).writer = { | ||
constructor: true, | ||
rpc Greetings(GreetingsRequest) returns (GreetingsResponse) { | ||
option (resemble.v1alpha1.method).reader = { | ||
}; | ||
} | ||
|
||
rpc Greet(GreetRequest) returns (GreetResponse) { | ||
option (resemble.v1alpha1.method).reader = { | ||
option (resemble.v1alpha1.method).writer = { | ||
}; | ||
} | ||
} | ||
|
||
message GreeterState { | ||
string greeting = 1; | ||
repeated string greetings = 2; | ||
} | ||
|
||
message CreateRequest { | ||
string greeting = 1; // E.g. "Hello". | ||
} | ||
message GreetingsRequest {} | ||
|
||
message CreateResponse {} | ||
message GreetingsResponse { | ||
repeated string greetings = 1; | ||
} | ||
|
||
message GreetRequest { | ||
string name = 1; // E.g. "World". | ||
string greeting = 1; // E.g. "Hello, World". | ||
} | ||
|
||
message GreetResponse { | ||
string message = 1; // E.g. "Hello, World!". | ||
string greeting = 1; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't really see the purpose of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @sp33drac3r it seems like the comments in this file were resolved, but the changes weren't made? How come? |
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
reboot-resemble>=0.0.5 | ||
reboot-resemble>=0.0.6 | ||
pytest>=7.4.2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
reboot-resemble>=0.0.5 | ||
reboot-resemble>=0.0.6 | ||
pytest>=7.4.2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
const { removeModuleScopePlugin, override, babelInclude } = require("customize-cra"); | ||
const path = require("path"); | ||
|
||
module.exports = function (config, env) { | ||
|
||
return Object.assign( | ||
config, | ||
override( | ||
removeModuleScopePlugin(), | ||
babelInclude([ | ||
path.resolve('src'), | ||
path.resolve('../../api/hello_world/v1'), | ||
]) | ||
)(config, env) | ||
) | ||
} |
Uh oh!
There was an error while loading. Please reload this page.