mirror of
https://codeberg.org/hyperreal/go-torrent-helper
synced 2024-11-01 16:53:09 +01:00
15 lines
181 B
Go
15 lines
181 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"codeberg.org/hyperreal/go-torrent-helper/command"
|
|
)
|
|
|
|
func main() {
|
|
if err := command.Root(os.Args[1:]); err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
}
|