go-torrent-helper/main.go
2024-03-29 20:01:52 -05:00

15 lines
179 B
Go

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