Skip to content

Commit

Permalink
Merge pull request #31 from Darley-Wey/master
Browse files Browse the repository at this point in the history
增强错误处理,修复videos函数bug
  • Loading branch information
Darley-Wey authored Feb 22, 2023
2 parents c592d6d + 8730d96 commit de9b4ce
Show file tree
Hide file tree
Showing 5 changed files with 185 additions and 11 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ go get github.com/ClubWeGo/relationmicro@latest

go get github.com/ClubWeGo/favoritemicro@latest

go get github.com/ClubWeGo/commentmicro@latest


# 说明
1. 当前注册用户时,前端并未提供个人参数配置的能力,也没有提供更新用户信息的能力,所以在core.register_server处写死了初始化的用户背景图像和头像。在配置本项目时,请将对应文件名换成minio中存储的文件名。
22 changes: 19 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ go 1.19
replace github.com/apache/thrift => github.com/apache/thrift v0.13.0

require (
github.com/ClubWeGo/favoritemicro v0.0.0-20230221055126-317754e6a63c
github.com/ClubWeGo/relationmicro v0.0.0-20230218072559-b17f0bf612ed
github.com/ClubWeGo/commentmicro v0.0.0-20230221133753-f02aff39de27
github.com/ClubWeGo/favoritemicro v0.0.0-20230221130053-a012e2f37ac3
github.com/ClubWeGo/relationmicro v0.0.0-20230221121729-815a12ae6608
github.com/ClubWeGo/usermicro v0.0.0-20230218161017-d68d94d1dac8
github.com/ClubWeGo/videomicro v0.0.0-20230219154644-a1694e2abf99
github.com/ClubWeGo/videomicro v0.0.0-20230220013200-4dee64770a5c
github.com/apache/thrift v0.13.0
github.com/cloudwego/hertz v0.5.2
github.com/cloudwego/kitex v0.4.4
Expand All @@ -28,6 +29,7 @@ require (
github.com/bytedance/go-tagexpr/v2 v2.9.2 // indirect
github.com/bytedance/gopkg v0.0.0-20220531084716-665b4f21126f // indirect
github.com/bytedance/sonic v1.5.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06 // indirect
github.com/chenzhuoyu/iasm v0.0.0-20220818063314-28c361dae733 // indirect
github.com/choleraehyq/pid v0.0.15 // indirect
Expand All @@ -37,14 +39,19 @@ require (
github.com/cloudwego/thriftgo v0.2.4 // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/gomodule/redigo v1.8.9 // indirect
github.com/google/pprof v0.0.0-20220608213341-c488b8fa1db3 // indirect
github.com/henrylee2cn/ameda v1.4.10 // indirect
github.com/henrylee2cn/goutil v0.0.0-20210127050712-89660552f6f8 // indirect
github.com/jhump/protoreflect v1.8.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.15.9 // indirect
Expand All @@ -55,6 +62,7 @@ require (
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nyaruka/phonenumbers v1.0.55 // indirect
github.com/oleiade/lane v1.0.1 // indirect
github.com/redis/go-redis/v9 v9.0.2 // indirect
github.com/rs/xid v1.4.0 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
github.com/tidwall/gjson v1.13.0 // indirect
Expand All @@ -71,14 +79,22 @@ require (
golang.org/x/arch v0.0.0-20220722155209-00200b7164a7 // indirect
golang.org/x/crypto v0.6.0 // indirect
golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8 // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/tools v0.1.12 // indirect
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect
google.golang.org/grpc v1.41.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
gopkg.in/ini.v1 v1.66.6 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/datatypes v1.0.7 // indirect
gorm.io/driver/mysql v1.4.7 // indirect
gorm.io/gen v0.3.21 // indirect
gorm.io/gorm v1.24.5 // indirect
gorm.io/hints v1.1.0 // indirect
gorm.io/plugin/dbresolver v1.4.1 // indirect
)
Loading

0 comments on commit de9b4ce

Please sign in to comment.