Files
svg-templater/cmd/svg-templater/main.go

15 lines
256 B
Go

package main
import (
"tomatentum.net/svg-templater/internal/command"
"tomatentum.net/svg-templater/pkg/format"
)
func main() {
if !format.CheckInkscape() {
panic("Inkscape not found")
}
command.PrepareCommandLine()
command.HandleCommandline()
}