This commit is contained in:
2023-06-27 04:00:35 +08:00
parent 01b16f8926
commit b68c512dab
7 changed files with 178 additions and 59 deletions

36
go.mod
View File

@@ -7,35 +7,41 @@ require (
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/russross/blackfriday v1.6.0
gorm.io/gorm v1.25.1
gorm.io/gorm v1.25.2-0.20230530020048-26663ab9bf55
)
require (
github.com/PuerkitoBio/goquery v1.6.1 // indirect
github.com/andybalholm/cascadia v1.2.0 // indirect
github.com/PuerkitoBio/goquery v1.8.1 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/mattn/go-sqlite3 v1.14.16 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/mattn/go-sqlite3 v1.14.17 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect
github.com/sizeofint/webp-animation v0.0.0-20190207194838-b631dc900de9 // indirect
github.com/tidwall/gjson v1.8.0 // indirect
github.com/tidwall/match v1.0.3 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
golang.org/x/image v0.7.0 // indirect
golang.org/x/net v0.6.0 // indirect
golang.org/x/text v0.9.0 // indirect
github.com/saintfish/chardet v0.0.0-20230101081208-5e3ef4b5456d // indirect
github.com/sizeofint/webp-animation v0.0.0-20210101174216-bdb4d77c39ea // indirect
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/tidwall/gjson v1.14.4 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
golang.org/x/image v0.8.0 // indirect
golang.org/x/net v0.11.0 // indirect
golang.org/x/text v0.10.0 // indirect
gopkg.in/xmlpath.v2 v2.0.0-20150820204837-860cbeca3ebc // indirect
)
require (
github.com/InvisibleFuture/to_entangle v0.0.0-20230623195202-8f000ad9cd4f
github.com/chai2010/webp v1.1.1
github.com/disintegration/imaging v1.6.2
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/sizeofint/gif-to-webp v0.0.0-20210224202734-e9d7ed071591
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.669
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cvm v1.0.669
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.686
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cvm v1.0.686
github.com/zhshch2002/goreq v0.0.0-20210608055943-7028cfd48a0d
gopkg.in/yaml.v2 v2.4.0
gorm.io/driver/sqlite v1.5.0
gorm.io/driver/sqlite v1.5.2
)