go-torrent-helper/main.go

15 lines
181 B
Go
Raw Normal View History

2023-06-24 04:33:24 +02:00
package main
import (
"log"
"os"
2024-03-30 06:23:56 +01:00
"codeberg.org/hyperreal/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)
}
}