non-functional wip state

This commit is contained in:
2025-08-18 18:54:08 +02:00
commit e7293464c1
20 changed files with 534 additions and 0 deletions

17
cmd/cli/main.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"git.blackforestbytes.com/BlackForestBytes/goext/exerr"
"git.blackforestbytes.com/BlackForestBytes/goext/langext"
"mikescher.com/kpsync/app"
)
func main() {
exerr.Init(exerr.ErrorPackageConfigInit{
ZeroLogErrTraces: langext.PFalse,
ZeroLogAllTraces: langext.PFalse,
})
kpApp := app.NewApplication()
kpApp.Run()
}