first commit

This commit is contained in:
Adrian Zürcher
2025-12-15 12:24:54 +01:00
commit 055bc70935
11 changed files with 471 additions and 0 deletions

11
pdfmerge_test.go Normal file
View File

@@ -0,0 +1,11 @@
package pdfmerge
import (
"testing"
)
func TestMerge(t *testing.T) {
t.Log("start pdf merge test")
file := []string{"./dst"}
Pdfmerge(file, "output.pdf")
}