This commit is contained in:
marcsello 2025-10-09 22:21:38 +02:00
commit fa47df6d89
22 changed files with 1724 additions and 0 deletions

19
main.go Normal file
View file

@ -0,0 +1,19 @@
package main
import (
"fmt"
"os"
)
func main() {
if len(os.Args) == 2 && os.Args[1] == "server" {
serverMain()
return
}
if len(os.Args) == 4 && os.Args[1] == "import" {
importMain(os.Args[2], os.Args[3])
return
}
fmt.Println("usage: main [import/server] <import file path> <import video target name>")
}