Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
daite committed Jul 20, 2024
1 parent 9058ea5 commit 43c7090
Show file tree
Hide file tree
Showing 21 changed files with 30 additions and 28 deletions.
11 changes: 10 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
module github.com/daite/angel

go 1.15
go 1.21

require (
github.com/PuerkitoBio/goquery v1.8.1
github.com/olekukonko/tablewriter v0.0.4
github.com/urfave/cli/v2 v2.3.0
)

require (
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/mattn/go-runewidth v0.0.7 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
golang.org/x/net v0.7.0 // indirect
)
7 changes: 0 additions & 7 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/PuerkitoBio/goquery v1.5.1 h1:PSPBGne8NIUWw+/7vFBV+kG2J/5MOjbzc7154OaKCSE=
github.com/PuerkitoBio/goquery v1.5.1/go.mod h1:GsLWisAFVj4WgDibEWF4pvYnkVQBpKBKeU+7zCJoLcc=
github.com/PuerkitoBio/goquery v1.8.1 h1:uQxhNlArOIdbrH1tr0UXwdVFgDcZDrZVdcpygAcwmWM=
github.com/PuerkitoBio/goquery v1.8.1/go.mod h1:Q8ICL1kNUJ2sXGoAhPGUdYDJvgQgHzJsnnd3H7Ho5jQ=
github.com/andybalholm/cascadia v1.1.0 h1:BuuO6sSfQNFRu1LppgbD25Hr2vLYW25JvxHs5zzsLTo=
github.com/andybalholm/cascadia v1.1.0/go.mod h1:GsXiBklL0woXo1j/WYWtSYYC4ouU9PqHO0sqidkEA4Y=
github.com/andybalholm/cascadia v1.3.1 h1:nhxRkql1kdYCc8Snf7D5/D3spOX+dBgjA6u8x004T2c=
github.com/andybalholm/cascadia v1.3.1/go.mod h1:R4bJ1UQfqADjvDa4P6HZHLh/3OxWWEqc0Sk8XGwHqvA=
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d h1:U+s90UTSYgptZMwQh2aRr3LuazLJIa+Pg3Kc1ylSYVY=
Expand All @@ -25,10 +21,7 @@ github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5t
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200202094626-16171245cfb2 h1:CCH4IOTTfewWjGOlSp+zGcjutRKlBEZQ6wTn8ozI/nI=
golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210916014120-12bc252f5db8/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
Expand Down
2 changes: 1 addition & 1 deletion jtorrent/sukebei.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package jtorrent
package jtorrent_test

import (
"net/url"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
2 changes: 1 addition & 1 deletion jtorrent/nyaa_test.go β†’ tests/nyaa_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package jtorrent
package tests

import (
"log"
Expand Down
2 changes: 1 addition & 1 deletion jtorrent/sukebei_test.go β†’ tests/sukebei_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package jtorrent
package tests

import (
"log"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
4 changes: 2 additions & 2 deletions ktorrent/torrentj_test.go β†’ tests/torrentj_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down Expand Up @@ -34,7 +34,7 @@ func TestGetDataFuncForTorrenJ(t *testing.T) {
}
}
func TestGetMagnetFuncForTorrentJ(t *testing.T) {
f, err := os.Open("../resources/torrentj_bbs.html")
f, err := os.Open("../../resources/torrentj_bbs.html")
if err != nil {
log.Fatal(err)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
2 changes: 1 addition & 1 deletion ktorrent/torrentqq_test.go β†’ tests/torrentqq_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
2 changes: 1 addition & 1 deletion ktorrent/torrentrj_test.go β†’ tests/torrentrj_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
2 changes: 1 addition & 1 deletion ktorrent/tshare_test.go β†’ tests/tshare_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down
2 changes: 1 addition & 1 deletion ktorrent/ttobogo_test.go β†’ tests/ttobogo_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ktorrent
package tests

import (
"log"
Expand Down

0 comments on commit 43c7090

Please sign in to comment.