Remove unnecessary package alias

This commit is contained in:
Jeffrey Serio 2023-06-26 03:13:00 -05:00
parent 77e94969d6
commit 2d506fcafd
1 changed files with 2 additions and 2 deletions

4
debian/main.go vendored
View File

@ -4,7 +4,7 @@ import (
"fmt"
"log"
thelper "codeberg.org/hyperreal/go-torrent-helper/common"
"codeberg.org/hyperreal/go-torrent-helper/common"
"github.com/hekmon/transmissionrpc"
)
@ -40,7 +40,7 @@ func (d Debian) AddNewTorrents(transmissionbt *transmissionrpc.Client) error {
}
func (d Debian) RemoveOldTorrents(transmissionbt *transmissionrpc.Client) error {
if err := thelper.RemoveTorrents(d.NameSubstr, d.Relver, transmissionbt); err != nil {
if err := common.RemoveTorrents(d.NameSubstr, d.Relver, transmissionbt); err != nil {
return err
}