mirror of
https://github.com/Mikescher/kpsync.git
synced 2025-08-25 08:38:03 +02:00
18 lines
349 B
Go
18 lines
349 B
Go
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()
|
|
}
|