Remove local dirs/files
This commit is contained in:
parent
9047912ba1
commit
c38822f5fa
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
build/
|
||||||
|
.direnv/
|
||||||
|
.vscode
|
15
.proto
15
.proto
@ -1,15 +0,0 @@
|
|||||||
|
|
||||||
syntax = "proto3";
|
|
||||||
|
|
||||||
package helloworld;
|
|
||||||
|
|
||||||
service StartHandshake {
|
|
||||||
rpc SayHello (HelloRequest) returns (HelloReply);
|
|
||||||
}
|
|
||||||
service HelloRequest {
|
|
||||||
string name = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
message HelloReply {
|
|
||||||
string message = 1;
|
|
||||||
}
|
|
7
test.cc
7
test.cc
@ -1,7 +0,0 @@
|
|||||||
#include <thread>
|
|
||||||
#include <iostream>
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
std::jthread t([] { std::cout << "Hello" << std::endl; });
|
|
||||||
return 0;
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user