15 lines
256 B
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()
|
|
}
|