Skip to content

Commit 2aac414

Browse files
committed
Add go bindings for libpqos
This commit introduces CGO bindings for libpqos library. Almost all functionality is covered except for IO monitoring Signed-off-by: Mikhail Malyshev <mike.malyshev@gmail.com>
1 parent 13e53e5 commit 2aac414

File tree

12 files changed

+3883
-0
lines changed

12 files changed

+3883
-0
lines changed

lib/go/.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, built with `go test -c`
9+
*.test
10+
11+
# Output of the go coverage tool
12+
*.out
13+
14+
# Dependency directories
15+
vendor/
16+
17+
# Go workspace file
18+
go.work
19+
20+
# Build artifacts
21+
examples/*/capability
22+
examples/*/simple
23+
examples/capability/capability
24+
examples/simple/simple
25+
26+
# IDE and editor files
27+
.vscode/
28+
.idea/
29+
*.swp
30+
*.swo
31+
*~
32+
.DS_Store
33+
34+
# Temporary files
35+
*.tmp
36+
*.bak
37+
38+
# Go build cache
39+
.cache/
40+
41+
# Coverage reports
42+
coverage.txt
43+
coverage.html

0 commit comments

Comments
 (0)