go-torrent-helper/main.go

15 lines
179 B
Go
Raw Normal View History

2023-06-24 04:33:24 +02:00
package main
import (
"log"
"os"
2024-03-30 01:59:29 +01:00
"git.hyperreal.coffee/go-torrent-helper/command"
2023-06-24 04:33:24 +02:00
)
func main() {
if err := command.Root(os.Args[1:]); err != nil {
log.Fatalln(err)
}
}