initial commit

This commit is contained in:
2025-08-05 15:53:44 +08:00
commit 09dc02ae52
553 changed files with 137665 additions and 0 deletions

13
third_party/libhv/scripts/create_repo.sh vendored Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
mkdir -p include lib src bin doc etc 3rd/include 3rd/lib dist
touch README.md BUILD.md RELEASE.md CHANGELOG.md Makefile .gitignore
git init
# personal
git submodule add https://github.com/ithewei/libhv.git src/hv
cp src/hv/.gitignore .
cp src/hv/.clang-format .
cp src/hv/Makefile .
cp -r src/hv/etc/* etc
cp src/hv/examples/hmain_test.cpp src/main.cpp