├── .gitignore ├── LICENSE ├── README.md ├── api_rooter ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── apps │ ├── comment │ │ └── api │ │ │ ├── comment.go │ │ │ └── http.go │ ├── favorite │ │ └── api │ │ │ ├── favorite.go │ │ │ └── http.go │ ├── message │ │ └── api │ │ │ ├── http.go │ │ │ └── message.go │ ├── relation │ │ └── api │ │ │ ├── http.go │ │ │ └── relation.go │ ├── token │ │ ├── README.md │ │ ├── app.go │ │ ├── impl │ │ │ ├── dao.go │ │ │ ├── impl.go │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── pb │ │ │ └── token.proto │ │ ├── token.pb.go │ │ └── token_grpc.pb.go │ ├── user │ │ ├── README.md │ │ └── api │ │ │ ├── http.go │ │ │ └── user.go │ └── video │ │ └── api │ │ ├── http.go │ │ └── video.go ├── client │ ├── README.md │ └── rpc │ │ ├── client.go │ │ └── client_test.go ├── common │ ├── all │ │ └── auto_register.go │ └── utils │ │ ├── token.go │ │ └── upload.go ├── etc │ └── config.toml.template ├── go.mod ├── go.sum ├── main.go └── protocol │ └── http.go ├── dou_kit ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── client │ ├── README.md │ ├── client.go │ └── client_test.go ├── cmd │ ├── README.md │ ├── init.go │ ├── root.go │ └── start.go ├── conf │ ├── README.md │ ├── aliyun.go │ ├── app.go │ ├── config.go │ ├── config_test.go │ ├── consul.go │ ├── load.go │ ├── log.go │ ├── mongo.go │ ├── mysql.go │ └── test.toml ├── constant │ ├── README.md │ └── constant.go ├── docs │ ├── sql │ │ └── tables.sql │ └── static │ │ ├── SVID_20230304_104537_1_x264.mp4 │ │ ├── micro1.png │ │ └── micro2.png ├── exception │ ├── README.md │ ├── custom │ │ └── custom.go │ ├── exception.go │ └── exception_handler.go ├── go.mod ├── go.sum ├── ioc │ ├── README.md │ ├── all.go │ ├── gin.go │ ├── grpc.go │ └── internal.go ├── protocol │ ├── README.md │ ├── aop.go │ ├── grpc.go │ └── http.go ├── utils │ ├── set.go │ ├── util.go │ └── utils_test.go └── version │ ├── version.go │ └── version_test.go ├── interaction_service ├── LICENSE ├── Makefile ├── README.md ├── apps │ ├── README.md │ ├── comment │ │ ├── app.go │ │ ├── comment.pb.go │ │ ├── comment_grpc.pb.go │ │ ├── impl │ │ │ ├── comment.go │ │ │ ├── comment_test.go │ │ │ ├── dao.go │ │ │ └── impl.go │ │ └── pb │ │ │ └── comment.proto │ └── favorite │ │ ├── app.go │ │ ├── favorite.pb.go │ │ ├── favorite_grpc.pb.go │ │ ├── impl │ │ ├── dao.go │ │ ├── favorite.go │ │ ├── favorite_test.go │ │ └── impl.go │ │ └── pb │ │ └── favorite.proto ├── client │ └── rpc │ │ └── client.go ├── common │ ├── all │ │ └── auto_register.go │ └── pb │ │ └── github.com │ │ └── Go-To-Byte │ │ └── DouSheng │ │ ├── user_center │ │ └── apps │ │ │ └── user │ │ │ └── pb │ │ │ └── user.proto │ │ └── video_service │ │ └── apps │ │ └── video │ │ └── pb │ │ └── video.proto ├── docs │ └── sql │ │ └── tables.sql ├── etc │ └── config.toml.template ├── go.mod ├── go.sum └── main.go ├── message_service ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── apps │ └── message │ │ ├── app.go │ │ ├── impl │ │ ├── dao.go │ │ ├── impl.go │ │ └── message.go │ │ ├── message.pb.go │ │ ├── message_grpc.pb.go │ │ └── pb │ │ └── message.proto ├── client │ ├── README.md │ └── rpc │ │ ├── client.go │ │ └── client_test.go ├── common │ ├── all │ │ └── auto_register.go │ └── pb │ │ └── github.com │ │ └── Go-To-Byte │ │ └── DouSheng │ │ └── user_center │ │ └── apps │ │ └── user │ │ └── pb │ │ └── user.proto ├── docs │ └── sql │ │ └── tables.sql ├── etc │ └── config.toml.template ├── go.mod ├── go.sum ├── main.go └── store │ ├── README.md │ ├── aliyun │ └── store.go │ └── uploads.go ├── relation_service ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── apps │ └── relation │ │ ├── app.go │ │ ├── impl │ │ ├── dao.go │ │ ├── impl.go │ │ ├── relation.go │ │ ├── relation_test.go │ │ └── sql.go │ │ ├── pb │ │ └── relation.proto │ │ ├── relation.pb.go │ │ └── relation_grpc.pb.go ├── client │ ├── README.md │ └── rpc │ │ ├── client.go │ │ └── client_test.go ├── common │ ├── all │ │ └── auto_register.go │ └── pb │ │ └── github.com │ │ └── Go-To-Byte │ │ └── DouSheng │ │ └── user_center │ │ └── apps │ │ └── user │ │ └── pb │ │ └── user.proto ├── docs │ └── sql │ │ └── tables.sql ├── etc │ └── config.toml.template ├── go.mod ├── go.sum ├── main.go └── store │ ├── README.md │ ├── aliyun │ └── store.go │ └── uploads.go ├── start.py ├── user_center ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── apps │ └── user │ │ ├── README.md │ │ ├── app.go │ │ ├── impl │ │ ├── compose_sync.go │ │ ├── dao.go │ │ ├── impl.go │ │ ├── user.go │ │ └── user_test.go │ │ ├── pb │ │ └── user.proto │ │ ├── user.pb.go │ │ └── user_grpc.pb.go ├── client │ ├── README.md │ └── rpc │ │ ├── client.go │ │ └── client_test.go ├── common │ ├── all │ │ └── auto_register.go │ └── utils │ │ ├── hash.go │ │ └── token.go ├── docs │ ├── example │ │ ├── register_user_req.json │ │ └── register_user_resp.json │ ├── sql │ │ └── tables.sql │ └── static │ │ └── image │ │ ├── user01-flow.png │ │ └── user02-interface.png ├── etc │ └── config.toml.template ├── go.mod ├── go.sum └── main.go └── video_service ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── apps └── video │ ├── app.go │ ├── impl │ ├── compose_sync.go │ ├── dao.go │ ├── impl.go │ ├── video.go │ └── video_test.go │ ├── pb │ └── video.proto │ ├── video.pb.go │ └── video_grpc.pb.go ├── client ├── README.md └── rpc │ ├── client.go │ └── client_test.go ├── common ├── all │ └── auto_register.go ├── pb │ └── github.com │ │ └── Go-To-Byte │ │ └── DouSheng │ │ └── user_center │ │ └── apps │ │ └── user │ │ └── pb │ │ └── user.proto └── utils │ ├── util.go │ └── utils_test.go ├── docs └── sql │ └── tables.sql ├── etc └── config.toml.template ├── go.mod ├── go.sum ├── main.go └── store ├── README.md ├── aliyun └── store.go └── uploads.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/README.md -------------------------------------------------------------------------------- /api_rooter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/.gitignore -------------------------------------------------------------------------------- /api_rooter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/LICENSE -------------------------------------------------------------------------------- /api_rooter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/Makefile -------------------------------------------------------------------------------- /api_rooter/README.md: -------------------------------------------------------------------------------- 1 | # Api Rooter 简易网关 2 | -------------------------------------------------------------------------------- /api_rooter/apps/comment/api/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/comment/api/comment.go -------------------------------------------------------------------------------- /api_rooter/apps/comment/api/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/comment/api/http.go -------------------------------------------------------------------------------- /api_rooter/apps/favorite/api/favorite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/favorite/api/favorite.go -------------------------------------------------------------------------------- /api_rooter/apps/favorite/api/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/favorite/api/http.go -------------------------------------------------------------------------------- /api_rooter/apps/message/api/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/message/api/http.go -------------------------------------------------------------------------------- /api_rooter/apps/message/api/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/message/api/message.go -------------------------------------------------------------------------------- /api_rooter/apps/relation/api/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/relation/api/http.go -------------------------------------------------------------------------------- /api_rooter/apps/relation/api/relation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/relation/api/relation.go -------------------------------------------------------------------------------- /api_rooter/apps/token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/token/README.md -------------------------------------------------------------------------------- /api_rooter/apps/token/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/token/app.go -------------------------------------------------------------------------------- /api_rooter/apps/token/impl/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/token/impl/dao.go -------------------------------------------------------------------------------- /api_rooter/apps/token/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/token/impl/impl.go -------------------------------------------------------------------------------- /api_rooter/apps/token/impl/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/token/impl/token.go -------------------------------------------------------------------------------- /api_rooter/apps/token/impl/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/token/impl/token_test.go -------------------------------------------------------------------------------- /api_rooter/apps/token/pb/token.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/token/pb/token.proto -------------------------------------------------------------------------------- /api_rooter/apps/token/token.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/token/token.pb.go -------------------------------------------------------------------------------- /api_rooter/apps/token/token_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/token/token_grpc.pb.go -------------------------------------------------------------------------------- /api_rooter/apps/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/user/README.md -------------------------------------------------------------------------------- /api_rooter/apps/user/api/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/user/api/http.go -------------------------------------------------------------------------------- /api_rooter/apps/user/api/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/user/api/user.go -------------------------------------------------------------------------------- /api_rooter/apps/video/api/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/video/api/http.go -------------------------------------------------------------------------------- /api_rooter/apps/video/api/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/apps/video/api/video.go -------------------------------------------------------------------------------- /api_rooter/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/client/README.md -------------------------------------------------------------------------------- /api_rooter/client/rpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/client/rpc/client.go -------------------------------------------------------------------------------- /api_rooter/client/rpc/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/client/rpc/client_test.go -------------------------------------------------------------------------------- /api_rooter/common/all/auto_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/common/all/auto_register.go -------------------------------------------------------------------------------- /api_rooter/common/utils/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/common/utils/token.go -------------------------------------------------------------------------------- /api_rooter/common/utils/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/common/utils/upload.go -------------------------------------------------------------------------------- /api_rooter/etc/config.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/etc/config.toml.template -------------------------------------------------------------------------------- /api_rooter/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/go.mod -------------------------------------------------------------------------------- /api_rooter/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/go.sum -------------------------------------------------------------------------------- /api_rooter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/main.go -------------------------------------------------------------------------------- /api_rooter/protocol/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/api_rooter/protocol/http.go -------------------------------------------------------------------------------- /dou_kit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/.gitignore -------------------------------------------------------------------------------- /dou_kit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/LICENSE -------------------------------------------------------------------------------- /dou_kit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/Makefile -------------------------------------------------------------------------------- /dou_kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/README.md -------------------------------------------------------------------------------- /dou_kit/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/client/README.md -------------------------------------------------------------------------------- /dou_kit/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/client/client.go -------------------------------------------------------------------------------- /dou_kit/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/client/client_test.go -------------------------------------------------------------------------------- /dou_kit/cmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/cmd/README.md -------------------------------------------------------------------------------- /dou_kit/cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/cmd/init.go -------------------------------------------------------------------------------- /dou_kit/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/cmd/root.go -------------------------------------------------------------------------------- /dou_kit/cmd/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/cmd/start.go -------------------------------------------------------------------------------- /dou_kit/conf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/README.md -------------------------------------------------------------------------------- /dou_kit/conf/aliyun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/aliyun.go -------------------------------------------------------------------------------- /dou_kit/conf/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/app.go -------------------------------------------------------------------------------- /dou_kit/conf/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/config.go -------------------------------------------------------------------------------- /dou_kit/conf/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/config_test.go -------------------------------------------------------------------------------- /dou_kit/conf/consul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/consul.go -------------------------------------------------------------------------------- /dou_kit/conf/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/load.go -------------------------------------------------------------------------------- /dou_kit/conf/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/log.go -------------------------------------------------------------------------------- /dou_kit/conf/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/mongo.go -------------------------------------------------------------------------------- /dou_kit/conf/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/mysql.go -------------------------------------------------------------------------------- /dou_kit/conf/test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/conf/test.toml -------------------------------------------------------------------------------- /dou_kit/constant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/constant/README.md -------------------------------------------------------------------------------- /dou_kit/constant/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/constant/constant.go -------------------------------------------------------------------------------- /dou_kit/docs/sql/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/docs/sql/tables.sql -------------------------------------------------------------------------------- /dou_kit/docs/static/SVID_20230304_104537_1_x264.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/docs/static/SVID_20230304_104537_1_x264.mp4 -------------------------------------------------------------------------------- /dou_kit/docs/static/micro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/docs/static/micro1.png -------------------------------------------------------------------------------- /dou_kit/docs/static/micro2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/docs/static/micro2.png -------------------------------------------------------------------------------- /dou_kit/exception/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/exception/README.md -------------------------------------------------------------------------------- /dou_kit/exception/custom/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/exception/custom/custom.go -------------------------------------------------------------------------------- /dou_kit/exception/exception.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/exception/exception.go -------------------------------------------------------------------------------- /dou_kit/exception/exception_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/exception/exception_handler.go -------------------------------------------------------------------------------- /dou_kit/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/go.mod -------------------------------------------------------------------------------- /dou_kit/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/go.sum -------------------------------------------------------------------------------- /dou_kit/ioc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/ioc/README.md -------------------------------------------------------------------------------- /dou_kit/ioc/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/ioc/all.go -------------------------------------------------------------------------------- /dou_kit/ioc/gin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/ioc/gin.go -------------------------------------------------------------------------------- /dou_kit/ioc/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/ioc/grpc.go -------------------------------------------------------------------------------- /dou_kit/ioc/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/ioc/internal.go -------------------------------------------------------------------------------- /dou_kit/protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/protocol/README.md -------------------------------------------------------------------------------- /dou_kit/protocol/aop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/protocol/aop.go -------------------------------------------------------------------------------- /dou_kit/protocol/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/protocol/grpc.go -------------------------------------------------------------------------------- /dou_kit/protocol/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/protocol/http.go -------------------------------------------------------------------------------- /dou_kit/utils/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/utils/set.go -------------------------------------------------------------------------------- /dou_kit/utils/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/utils/util.go -------------------------------------------------------------------------------- /dou_kit/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/utils/utils_test.go -------------------------------------------------------------------------------- /dou_kit/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/version/version.go -------------------------------------------------------------------------------- /dou_kit/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/dou_kit/version/version_test.go -------------------------------------------------------------------------------- /interaction_service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/LICENSE -------------------------------------------------------------------------------- /interaction_service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/Makefile -------------------------------------------------------------------------------- /interaction_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/README.md -------------------------------------------------------------------------------- /interaction_service/apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/README.md -------------------------------------------------------------------------------- /interaction_service/apps/comment/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/comment/app.go -------------------------------------------------------------------------------- /interaction_service/apps/comment/comment.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/comment/comment.pb.go -------------------------------------------------------------------------------- /interaction_service/apps/comment/comment_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/comment/comment_grpc.pb.go -------------------------------------------------------------------------------- /interaction_service/apps/comment/impl/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/comment/impl/comment.go -------------------------------------------------------------------------------- /interaction_service/apps/comment/impl/comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/comment/impl/comment_test.go -------------------------------------------------------------------------------- /interaction_service/apps/comment/impl/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/comment/impl/dao.go -------------------------------------------------------------------------------- /interaction_service/apps/comment/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/comment/impl/impl.go -------------------------------------------------------------------------------- /interaction_service/apps/comment/pb/comment.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/comment/pb/comment.proto -------------------------------------------------------------------------------- /interaction_service/apps/favorite/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/favorite/app.go -------------------------------------------------------------------------------- /interaction_service/apps/favorite/favorite.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/favorite/favorite.pb.go -------------------------------------------------------------------------------- /interaction_service/apps/favorite/favorite_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/favorite/favorite_grpc.pb.go -------------------------------------------------------------------------------- /interaction_service/apps/favorite/impl/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/favorite/impl/dao.go -------------------------------------------------------------------------------- /interaction_service/apps/favorite/impl/favorite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/favorite/impl/favorite.go -------------------------------------------------------------------------------- /interaction_service/apps/favorite/impl/favorite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/favorite/impl/favorite_test.go -------------------------------------------------------------------------------- /interaction_service/apps/favorite/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/favorite/impl/impl.go -------------------------------------------------------------------------------- /interaction_service/apps/favorite/pb/favorite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/apps/favorite/pb/favorite.proto -------------------------------------------------------------------------------- /interaction_service/client/rpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/client/rpc/client.go -------------------------------------------------------------------------------- /interaction_service/common/all/auto_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/common/all/auto_register.go -------------------------------------------------------------------------------- /interaction_service/common/pb/github.com/Go-To-Byte/DouSheng/user_center/apps/user/pb/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/common/pb/github.com/Go-To-Byte/DouSheng/user_center/apps/user/pb/user.proto -------------------------------------------------------------------------------- /interaction_service/common/pb/github.com/Go-To-Byte/DouSheng/video_service/apps/video/pb/video.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/common/pb/github.com/Go-To-Byte/DouSheng/video_service/apps/video/pb/video.proto -------------------------------------------------------------------------------- /interaction_service/docs/sql/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/docs/sql/tables.sql -------------------------------------------------------------------------------- /interaction_service/etc/config.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/etc/config.toml.template -------------------------------------------------------------------------------- /interaction_service/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/go.mod -------------------------------------------------------------------------------- /interaction_service/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/go.sum -------------------------------------------------------------------------------- /interaction_service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/interaction_service/main.go -------------------------------------------------------------------------------- /message_service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/.gitignore -------------------------------------------------------------------------------- /message_service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/LICENSE -------------------------------------------------------------------------------- /message_service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/Makefile -------------------------------------------------------------------------------- /message_service/README.md: -------------------------------------------------------------------------------- 1 | # message service 社交方向-消息服务 2 | 3 | 施工ing 4 | 5 | ## 运行方式 6 | 7 | TODO -------------------------------------------------------------------------------- /message_service/apps/message/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/apps/message/app.go -------------------------------------------------------------------------------- /message_service/apps/message/impl/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/apps/message/impl/dao.go -------------------------------------------------------------------------------- /message_service/apps/message/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/apps/message/impl/impl.go -------------------------------------------------------------------------------- /message_service/apps/message/impl/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/apps/message/impl/message.go -------------------------------------------------------------------------------- /message_service/apps/message/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/apps/message/message.pb.go -------------------------------------------------------------------------------- /message_service/apps/message/message_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/apps/message/message_grpc.pb.go -------------------------------------------------------------------------------- /message_service/apps/message/pb/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/apps/message/pb/message.proto -------------------------------------------------------------------------------- /message_service/client/README.md: -------------------------------------------------------------------------------- 1 | # 消息服务[message_service]SDK 2 | 3 | TODO -------------------------------------------------------------------------------- /message_service/client/rpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/client/rpc/client.go -------------------------------------------------------------------------------- /message_service/client/rpc/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/client/rpc/client_test.go -------------------------------------------------------------------------------- /message_service/common/all/auto_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/common/all/auto_register.go -------------------------------------------------------------------------------- /message_service/common/pb/github.com/Go-To-Byte/DouSheng/user_center/apps/user/pb/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/common/pb/github.com/Go-To-Byte/DouSheng/user_center/apps/user/pb/user.proto -------------------------------------------------------------------------------- /message_service/docs/sql/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/docs/sql/tables.sql -------------------------------------------------------------------------------- /message_service/etc/config.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/etc/config.toml.template -------------------------------------------------------------------------------- /message_service/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/go.mod -------------------------------------------------------------------------------- /message_service/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/go.sum -------------------------------------------------------------------------------- /message_service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/main.go -------------------------------------------------------------------------------- /message_service/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/store/README.md -------------------------------------------------------------------------------- /message_service/store/aliyun/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/store/aliyun/store.go -------------------------------------------------------------------------------- /message_service/store/uploads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/message_service/store/uploads.go -------------------------------------------------------------------------------- /relation_service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/.gitignore -------------------------------------------------------------------------------- /relation_service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/LICENSE -------------------------------------------------------------------------------- /relation_service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/Makefile -------------------------------------------------------------------------------- /relation_service/README.md: -------------------------------------------------------------------------------- 1 | # relation service 社交方向-关系服务 2 | 3 | 施工ing 4 | 5 | ## 运行方式 -------------------------------------------------------------------------------- /relation_service/apps/relation/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/apps/relation/app.go -------------------------------------------------------------------------------- /relation_service/apps/relation/impl/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/apps/relation/impl/dao.go -------------------------------------------------------------------------------- /relation_service/apps/relation/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/apps/relation/impl/impl.go -------------------------------------------------------------------------------- /relation_service/apps/relation/impl/relation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/apps/relation/impl/relation.go -------------------------------------------------------------------------------- /relation_service/apps/relation/impl/relation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/apps/relation/impl/relation_test.go -------------------------------------------------------------------------------- /relation_service/apps/relation/impl/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/apps/relation/impl/sql.go -------------------------------------------------------------------------------- /relation_service/apps/relation/pb/relation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/apps/relation/pb/relation.proto -------------------------------------------------------------------------------- /relation_service/apps/relation/relation.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/apps/relation/relation.pb.go -------------------------------------------------------------------------------- /relation_service/apps/relation/relation_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/apps/relation/relation_grpc.pb.go -------------------------------------------------------------------------------- /relation_service/client/README.md: -------------------------------------------------------------------------------- 1 | # 关系服务[relation_service]SDK 2 | 3 | TODO -------------------------------------------------------------------------------- /relation_service/client/rpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/client/rpc/client.go -------------------------------------------------------------------------------- /relation_service/client/rpc/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/client/rpc/client_test.go -------------------------------------------------------------------------------- /relation_service/common/all/auto_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/common/all/auto_register.go -------------------------------------------------------------------------------- /relation_service/common/pb/github.com/Go-To-Byte/DouSheng/user_center/apps/user/pb/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/common/pb/github.com/Go-To-Byte/DouSheng/user_center/apps/user/pb/user.proto -------------------------------------------------------------------------------- /relation_service/docs/sql/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/docs/sql/tables.sql -------------------------------------------------------------------------------- /relation_service/etc/config.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/etc/config.toml.template -------------------------------------------------------------------------------- /relation_service/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/go.mod -------------------------------------------------------------------------------- /relation_service/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/go.sum -------------------------------------------------------------------------------- /relation_service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/main.go -------------------------------------------------------------------------------- /relation_service/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/store/README.md -------------------------------------------------------------------------------- /relation_service/store/aliyun/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/store/aliyun/store.go -------------------------------------------------------------------------------- /relation_service/store/uploads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/relation_service/store/uploads.go -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/start.py -------------------------------------------------------------------------------- /user_center/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/.gitignore -------------------------------------------------------------------------------- /user_center/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/LICENSE -------------------------------------------------------------------------------- /user_center/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/Makefile -------------------------------------------------------------------------------- /user_center/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/README.md -------------------------------------------------------------------------------- /user_center/apps/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/apps/user/README.md -------------------------------------------------------------------------------- /user_center/apps/user/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/apps/user/app.go -------------------------------------------------------------------------------- /user_center/apps/user/impl/compose_sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/apps/user/impl/compose_sync.go -------------------------------------------------------------------------------- /user_center/apps/user/impl/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/apps/user/impl/dao.go -------------------------------------------------------------------------------- /user_center/apps/user/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/apps/user/impl/impl.go -------------------------------------------------------------------------------- /user_center/apps/user/impl/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/apps/user/impl/user.go -------------------------------------------------------------------------------- /user_center/apps/user/impl/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/apps/user/impl/user_test.go -------------------------------------------------------------------------------- /user_center/apps/user/pb/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/apps/user/pb/user.proto -------------------------------------------------------------------------------- /user_center/apps/user/user.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/apps/user/user.pb.go -------------------------------------------------------------------------------- /user_center/apps/user/user_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/apps/user/user_grpc.pb.go -------------------------------------------------------------------------------- /user_center/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/client/README.md -------------------------------------------------------------------------------- /user_center/client/rpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/client/rpc/client.go -------------------------------------------------------------------------------- /user_center/client/rpc/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/client/rpc/client_test.go -------------------------------------------------------------------------------- /user_center/common/all/auto_register.go: -------------------------------------------------------------------------------- 1 | // @Author: Ciusyan 2023/1/25 2 | package all 3 | 4 | // 在这里统一自动注册IOC 5 | import ( 6 | _ "github.com/Go-To-Byte/DouSheng/user_center/apps/user/impl" 7 | ) 8 | -------------------------------------------------------------------------------- /user_center/common/utils/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/common/utils/hash.go -------------------------------------------------------------------------------- /user_center/common/utils/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/common/utils/token.go -------------------------------------------------------------------------------- /user_center/docs/example/register_user_req.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/docs/example/register_user_req.json -------------------------------------------------------------------------------- /user_center/docs/example/register_user_resp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/docs/example/register_user_resp.json -------------------------------------------------------------------------------- /user_center/docs/sql/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/docs/sql/tables.sql -------------------------------------------------------------------------------- /user_center/docs/static/image/user01-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/docs/static/image/user01-flow.png -------------------------------------------------------------------------------- /user_center/docs/static/image/user02-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/docs/static/image/user02-interface.png -------------------------------------------------------------------------------- /user_center/etc/config.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/etc/config.toml.template -------------------------------------------------------------------------------- /user_center/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/go.mod -------------------------------------------------------------------------------- /user_center/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/go.sum -------------------------------------------------------------------------------- /user_center/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/user_center/main.go -------------------------------------------------------------------------------- /video_service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/.gitignore -------------------------------------------------------------------------------- /video_service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/LICENSE -------------------------------------------------------------------------------- /video_service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/Makefile -------------------------------------------------------------------------------- /video_service/README.md: -------------------------------------------------------------------------------- 1 | # video_service 视频服务 2 | 3 | -------------------------------------------------------------------------------- /video_service/apps/video/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/apps/video/app.go -------------------------------------------------------------------------------- /video_service/apps/video/impl/compose_sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/apps/video/impl/compose_sync.go -------------------------------------------------------------------------------- /video_service/apps/video/impl/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/apps/video/impl/dao.go -------------------------------------------------------------------------------- /video_service/apps/video/impl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/apps/video/impl/impl.go -------------------------------------------------------------------------------- /video_service/apps/video/impl/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/apps/video/impl/video.go -------------------------------------------------------------------------------- /video_service/apps/video/impl/video_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/apps/video/impl/video_test.go -------------------------------------------------------------------------------- /video_service/apps/video/pb/video.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/apps/video/pb/video.proto -------------------------------------------------------------------------------- /video_service/apps/video/video.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/apps/video/video.pb.go -------------------------------------------------------------------------------- /video_service/apps/video/video_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/apps/video/video_grpc.pb.go -------------------------------------------------------------------------------- /video_service/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/client/README.md -------------------------------------------------------------------------------- /video_service/client/rpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/client/rpc/client.go -------------------------------------------------------------------------------- /video_service/client/rpc/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/client/rpc/client_test.go -------------------------------------------------------------------------------- /video_service/common/all/auto_register.go: -------------------------------------------------------------------------------- 1 | // @Author: Ciusyan 2023/2/7 2 | package all 3 | 4 | // 在这里统一自动注册实例 [主要是放入IOC] 5 | 6 | import ( 7 | _ "github.com/Go-To-Byte/DouSheng/video_service/apps/video/impl" 8 | ) 9 | -------------------------------------------------------------------------------- /video_service/common/pb/github.com/Go-To-Byte/DouSheng/user_center/apps/user/pb/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/common/pb/github.com/Go-To-Byte/DouSheng/user_center/apps/user/pb/user.proto -------------------------------------------------------------------------------- /video_service/common/utils/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/common/utils/util.go -------------------------------------------------------------------------------- /video_service/common/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/common/utils/utils_test.go -------------------------------------------------------------------------------- /video_service/docs/sql/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/docs/sql/tables.sql -------------------------------------------------------------------------------- /video_service/etc/config.toml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/etc/config.toml.template -------------------------------------------------------------------------------- /video_service/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/go.mod -------------------------------------------------------------------------------- /video_service/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/go.sum -------------------------------------------------------------------------------- /video_service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/main.go -------------------------------------------------------------------------------- /video_service/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/store/README.md -------------------------------------------------------------------------------- /video_service/store/aliyun/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/store/aliyun/store.go -------------------------------------------------------------------------------- /video_service/store/uploads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Go-To-Byte/DouSheng/HEAD/video_service/store/uploads.go --------------------------------------------------------------------------------