Remove local dirs/files

This commit is contained in:
xbazzi 2025-07-27 21:43:43 -06:00
parent 9047912ba1
commit c38822f5fa
5 changed files with 3 additions and 25 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
build/
.direnv/
.vscode

15
.proto
View File

@ -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;
}

BIN
test

Binary file not shown.

View File

@ -1,7 +0,0 @@
#include <thread>
#include <iostream>
int main() {
std::jthread t([] { std::cout << "Hello" << std::endl; });
return 0;
}

View File

@ -1,3 +0,0 @@
#include <thread>
std::jthread t([] { std::cout << "Hello" << std::endl; });