feat(formatconverter): add formatconverter method using inkscape

This commit is contained in:
2026-02-08 19:42:28 +01:00
parent 7c6d8f4206
commit 741b196497
3 changed files with 143 additions and 34 deletions

View File

@@ -5,9 +5,13 @@ import (
"tomatentum.net/svg-templater/internal/command"
"tomatentum.net/svg-templater/internal/database"
"tomatentum.net/svg-templater/pkg/format"
)
func main() {
if !format.CheckInkscape() {
panic("Inkscape not found")
}
if err := database.OpenSQLite(); err != nil {
log.Fatal("Failed opening DB:\n", err)
return