Initial commit: Pipeline Database

This commit is contained in:
Pipeline Database
2025-09-30 15:05:56 +08:00
commit e81dcba515
44 changed files with 12972 additions and 0 deletions

31
.gitattributes vendored Normal file
View File

@@ -0,0 +1,31 @@
# 文本文件统一使用 LF 换行符
* text=auto eol=lf
# Go 源代码文件
*.go text eol=lf
go.mod text eol=lf
go.sum text eol=lf
# 文档文件
*.md text eol=lf
*.txt text eol=lf
README* text eol=lf
# Git 配置文件
.gitignore text eol=lf
.gitattributes text eol=lf
# 数据库文件(二进制)
*.db binary
*.database binary
# Go 编译产物(二进制)
*.exe binary
*.dll binary
*.so binary
*.dylib binary
# 语言检测
*.go linguist-language=Go
*.md linguist-documentation
examples/ linguist-documentation