go-torrent-helper/main.go
2023-10-25 19:45:21 -05:00

15 lines
179 B
Go

package main
import (
"log"
"os"
"git.sr.ht/~hyperreal/go-torrent-helper/command"
)
func main() {
if err := command.Root(os.Args[1:]); err != nil {
log.Fatalln(err)
}
}