├── .drone.yml ├── .idea └── .gitignore ├── LICENSE ├── README.md ├── app ├── common │ ├── config │ │ ├── config.go │ │ ├── custom.go │ │ ├── entry.go │ │ └── internal │ │ │ ├── common │ │ │ ├── common.go │ │ │ ├── entry.go │ │ │ └── viper.go │ │ │ ├── consts │ │ │ ├── consts.go │ │ │ └── error.go │ │ │ ├── database │ │ │ ├── database.go │ │ │ ├── entry.go │ │ │ ├── minio.go │ │ │ ├── mysql.go │ │ │ └── redis.go │ │ │ ├── middleware │ │ │ ├── cors.go │ │ │ ├── entry.go │ │ │ ├── jwt.go │ │ │ └── sentinel.go │ │ │ └── types │ │ │ ├── agollo.go │ │ │ └── types.go │ ├── douyin │ │ └── consts.go │ ├── errx │ │ ├── consts.go │ │ ├── err.go │ │ └── id.go │ ├── log │ │ ├── gorm.go │ │ ├── log.go │ │ ├── logx.go │ │ ├── options.go │ │ └── setinel.go │ ├── middleware │ │ ├── CORSMiddleware.go │ │ ├── JWTAuthMiddleware.go │ │ ├── consts.go │ │ └── sentinelMiddleware.go │ ├── model │ │ └── response │ │ │ └── common.go │ ├── mq │ │ └── nsq │ │ │ ├── consumer.go │ │ │ ├── log.go │ │ │ ├── nsq.go │ │ │ └── producer.go │ └── pprof │ │ └── server.go └── service │ ├── auth │ ├── api │ │ ├── Dockerfile │ │ ├── auth.api │ │ ├── auth.go │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── consts │ │ │ └── errorid.go │ │ │ ├── handler │ │ │ ├── gettokenbyauthhandler.go │ │ │ ├── readtokenhandler.go │ │ │ └── routes.go │ │ │ ├── logic │ │ │ ├── gettokenbyauthlogic.go │ │ │ └── readtokenlogic.go │ │ │ ├── model │ │ │ └── token │ │ │ │ ├── consts.go │ │ │ │ ├── init.go │ │ │ │ ├── token_granter.go │ │ │ │ ├── token_server.go │ │ │ │ └── token_service.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ └── types.go │ ├── consts.go │ ├── internal │ │ ├── auth │ │ │ ├── token.go │ │ │ └── token_client.go │ │ └── sys │ │ │ └── consts.go │ └── rpc │ │ └── token │ │ ├── enhancer │ │ ├── Dockerfile │ │ ├── auth.token_enhancer.go │ │ ├── auth.token_enhancer.proto │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── consts │ │ │ │ └── errorid.go │ │ │ ├── logic │ │ │ │ ├── generatetokenlogic.go │ │ │ │ └── readtokenlogic.go │ │ │ ├── model │ │ │ │ └── jwt │ │ │ │ │ ├── consts.go │ │ │ │ │ ├── errorid.go │ │ │ │ │ └── jwt.go │ │ │ ├── server │ │ │ │ └── tokenenhancerserver.go │ │ │ └── svc │ │ │ │ └── servicecontext.go │ │ ├── pb │ │ │ ├── auth.token_enhancer.pb.go │ │ │ └── auth.token_enhancer_grpc.pb.go │ │ └── tokenenhancer │ │ │ └── tokenenhancer.go │ │ └── store │ │ ├── Dockerfile │ │ ├── auth.token_store.go │ │ ├── auth.token_store.proto │ │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── consts │ │ │ ├── consts.go │ │ │ └── errorid.go │ │ ├── logic │ │ │ ├── gettokenlogic.go │ │ │ ├── removetokenlogic.go │ │ │ └── storetokenlogic.go │ │ ├── server │ │ │ └── tokenstoreserver.go │ │ └── svc │ │ │ └── servicecontext.go │ │ ├── pb │ │ ├── auth.token_store.pb.go │ │ └── auth.token_store_grpc.pb.go │ │ └── tokenstore │ │ └── tokenstore.go │ ├── chat │ ├── api │ │ ├── Dockerfile │ │ ├── chat.api │ │ ├── chat.go │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── consts │ │ │ ├── chat │ │ │ │ └── errorid.go │ │ │ └── errorid.go │ │ │ ├── handler │ │ │ ├── getmessagelisthandler.go │ │ │ ├── routes.go │ │ │ └── sendmessagehandler.go │ │ │ ├── logic │ │ │ ├── getmessagelistlogic.go │ │ │ └── sendmessagelogic.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ ├── types │ │ │ └── types.go │ │ │ └── ws │ │ │ ├── init.go │ │ │ └── internal │ │ │ ├── client │ │ │ ├── client.go │ │ │ └── types.go │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── model │ │ │ ├── request │ │ │ │ └── request.go │ │ │ └── response │ │ │ │ └── response.go │ │ │ ├── service │ │ │ ├── listen │ │ │ │ ├── internal │ │ │ │ │ └── handler │ │ │ │ │ │ └── handler.go │ │ │ │ └── listen.go │ │ │ ├── manager │ │ │ │ ├── manager.go │ │ │ │ ├── process.go │ │ │ │ └── types.go │ │ │ └── service.go │ │ │ └── svc │ │ │ └── servicecontext.go │ ├── internal │ │ └── sys │ │ │ └── consts.go │ └── rpc │ │ └── sys │ │ ├── Dockerfile │ │ ├── chat.sys.go │ │ ├── chat.sys.proto │ │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── consts │ │ │ └── errorid.go │ │ ├── logic │ │ │ ├── getmessagelogic.go │ │ │ ├── sendmessagelogic.go │ │ │ └── storemessagelogic.go │ │ ├── model │ │ │ └── dao │ │ │ │ └── entity │ │ │ │ └── chat_message.go │ │ ├── server │ │ │ └── sysserver.go │ │ └── svc │ │ │ └── servicecontext.go │ │ ├── pb │ │ ├── chat.sys.pb.go │ │ └── chat.sys_grpc.pb.go │ │ └── sys │ │ └── sys.go │ ├── mq │ └── nsq │ │ ├── consumer │ │ ├── Dockerfile │ │ ├── consumer.go │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── listen │ │ │ ├── chat │ │ │ │ ├── handler.go │ │ │ │ └── service.go │ │ │ ├── listen.go │ │ │ ├── user │ │ │ │ ├── handler.go │ │ │ │ └── service.go │ │ │ └── video │ │ │ │ ├── handler.go │ │ │ │ └── service.go │ │ │ └── svc │ │ │ └── servicecontext.go │ │ ├── internal │ │ └── consts │ │ │ └── consts.go │ │ └── producer │ │ ├── chat │ │ └── producer.go │ │ ├── user │ │ └── producer.go │ │ └── video │ │ └── producer.go │ ├── user │ ├── api │ │ ├── Dockerfile │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── consts │ │ │ │ ├── errorid.go │ │ │ │ ├── profile │ │ │ │ │ └── errorid.go │ │ │ │ ├── relation │ │ │ │ │ └── errorid.go │ │ │ │ └── sign │ │ │ │ │ └── errorid.go │ │ │ ├── handler │ │ │ │ ├── getfollowerlisthandler.go │ │ │ │ ├── getfollowlisthandler.go │ │ │ │ ├── getfriendlisthandler.go │ │ │ │ ├── getprofilehandler.go │ │ │ │ ├── loginhandler.go │ │ │ │ ├── registerhandler.go │ │ │ │ ├── relationhandler.go │ │ │ │ └── routes.go │ │ │ ├── logic │ │ │ │ ├── getfollowerlistlogic.go │ │ │ │ ├── getfollowlistlogic.go │ │ │ │ ├── getfriendlistlogic.go │ │ │ │ ├── getprofilelogic.go │ │ │ │ ├── loginlogic.go │ │ │ │ ├── registerlogic.go │ │ │ │ └── relationlogic.go │ │ │ ├── svc │ │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ │ └── types.go │ │ ├── user.api │ │ └── user.go │ ├── internal │ │ ├── sys │ │ │ └── consts.go │ │ ├── user │ │ │ └── consts.go │ │ └── video │ │ │ └── consts.go │ └── rpc │ │ └── sys │ │ ├── Dockerfile │ │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── logic │ │ │ ├── getfollowerlistlogic.go │ │ │ ├── getfollowlistlogic.go │ │ │ ├── getfriendlistlogic.go │ │ │ ├── getprofilelogic.go │ │ │ ├── loginlogic.go │ │ │ ├── registerlogic.go │ │ │ └── relationlogic.go │ │ ├── model │ │ │ ├── consts │ │ │ │ └── errorid.go │ │ │ ├── dao │ │ │ │ └── entity │ │ │ │ │ ├── chat_message.go │ │ │ │ │ ├── user_subject.go │ │ │ │ │ └── video_subject.go │ │ │ ├── profile │ │ │ │ ├── error.go │ │ │ │ ├── errorid.go │ │ │ │ └── model.go │ │ │ ├── relation │ │ │ │ ├── error.go │ │ │ │ ├── errorid.go │ │ │ │ └── model.go │ │ │ └── sign │ │ │ │ ├── error.go │ │ │ │ ├── errorid.go │ │ │ │ └── model.go │ │ ├── server │ │ │ └── sysserver.go │ │ └── svc │ │ │ └── servicecontext.go │ │ ├── pb │ │ ├── user.sys.pb.go │ │ └── user.sys_grpc.pb.go │ │ ├── sys │ │ └── sys.go │ │ ├── user.sys.go │ │ └── user.sys.proto │ └── video │ ├── api │ ├── Dockerfile │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── consts │ │ │ ├── crud │ │ │ │ └── errorid.go │ │ │ ├── errorid.go │ │ │ └── info │ │ │ │ └── errorid.go │ │ ├── handler │ │ │ ├── commenthandler.go │ │ │ ├── favoritehandler.go │ │ │ ├── feedhandler.go │ │ │ ├── getcommentlisthandler.go │ │ │ ├── getfavoritelisthandler.go │ │ │ ├── getpublishlisthandler.go │ │ │ ├── publishhandler.go │ │ │ └── routes.go │ │ ├── logic │ │ │ ├── commentlogic.go │ │ │ ├── favoritelogic.go │ │ │ ├── feedlogic.go │ │ │ ├── getcommentlistlogic.go │ │ │ ├── getfavoritelistlogic.go │ │ │ ├── getpublishlistlogic.go │ │ │ └── publishlogic.go │ │ ├── svc │ │ │ └── servicecontext.go │ │ └── types │ │ │ └── types.go │ ├── video.api │ └── video.go │ ├── internal │ ├── sys │ │ └── sys.go │ └── video │ │ └── consts.go │ └── rpc │ └── sys │ ├── Dockerfile │ ├── internal │ ├── config │ │ └── config.go │ ├── logic │ │ ├── commentlogic.go │ │ ├── favoritelogic.go │ │ ├── feedlogic.go │ │ ├── getcommentlistlogic.go │ │ ├── getfavoritelistlogic.go │ │ ├── getpublishlistlogic.go │ │ ├── managecommentlogic.go │ │ └── publishlogic.go │ ├── model │ │ ├── consts │ │ │ └── errorid.go │ │ ├── crud │ │ │ ├── consts.go │ │ │ ├── error.go │ │ │ ├── errorid.go │ │ │ └── model.go │ │ ├── dao │ │ │ └── entity │ │ │ │ ├── comment_subject.go │ │ │ │ └── video_subject.go │ │ └── info │ │ │ ├── error.go │ │ │ ├── errorid.go │ │ │ └── model.go │ ├── server │ │ └── sysserver.go │ └── svc │ │ └── servicecontext.go │ ├── pb │ ├── video.sys.pb.go │ └── video.sys_grpc.pb.go │ ├── sys │ └── sys.go │ ├── video.sys.go │ └── video.sys.proto ├── docker-compose.yml ├── go.mod ├── go.sum ├── manifest ├── .goctl │ └── douyin │ │ ├── api │ │ ├── config.tpl │ │ ├── context.tpl │ │ ├── handler.tpl │ │ ├── logic.tpl │ │ ├── main.tpl │ │ ├── middleware.tpl │ │ ├── route-addition.tpl │ │ ├── routes.tpl │ │ ├── template.tpl │ │ └── types.tpl │ │ ├── docker │ │ └── docker.tpl │ │ ├── kube │ │ ├── deployment.tpl │ │ └── job.tpl │ │ ├── model │ │ ├── delete.tpl │ │ ├── err.tpl │ │ ├── field.tpl │ │ ├── find-one-by-field-extra-method.tpl │ │ ├── find-one-by-field.tpl │ │ ├── find-one.tpl │ │ ├── import-no-cache.tpl │ │ ├── import.tpl │ │ ├── insert.tpl │ │ ├── interface-delete.tpl │ │ ├── interface-find-one-by-field.tpl │ │ ├── interface-find-one.tpl │ │ ├── interface-insert.tpl │ │ ├── interface-update.tpl │ │ ├── model-gen.tpl │ │ ├── model-new.tpl │ │ ├── model.tpl │ │ ├── table-name.tpl │ │ ├── tag.tpl │ │ ├── types.tpl │ │ ├── update.tpl │ │ └── var.tpl │ │ ├── mongo │ │ ├── err.tpl │ │ ├── model.tpl │ │ ├── model_custom.tpl │ │ └── model_types.tpl │ │ ├── newapi │ │ └── newtemplate.tpl │ │ └── rpc │ │ ├── call.tpl │ │ ├── config.tpl │ │ ├── etc.tpl │ │ ├── logic-func.tpl │ │ ├── logic.tpl │ │ ├── main.tpl │ │ ├── server-func.tpl │ │ ├── server.tpl │ │ ├── svc.tpl │ │ └── template.tpl ├── config │ └── dict │ │ └── default_dict.txt ├── deploy │ └── image │ │ ├── base │ │ └── Dockerfile │ │ └── ffmpeg │ │ └── Dockerfile └── docs │ ├── assembly.md │ ├── auth.md │ ├── chat.md │ ├── image │ ├── apollo.svg │ ├── architecture.png │ ├── auth-module.png │ ├── award.jpg │ ├── chat-list-flow.jpg │ ├── chat-list-uml.jpg │ ├── chat-module.png │ ├── chat-send-flow.jpg │ ├── chat-send-uml.jpg │ ├── consul.svg │ ├── env-apollo.png │ ├── go-zero.png │ ├── jaeger.svg │ ├── mapreduce.png │ ├── minio.png │ ├── mysql.svg │ ├── nsq.png │ ├── redis.svg │ ├── relation.png │ ├── traefik.png │ ├── user-list-flow.jpg │ ├── user-list-uml.jpg │ ├── user-login-flow.jpg │ ├── user-login-uml.jpg │ ├── user-module.png │ ├── user-profile-flow.jpg │ ├── user-profile-uml.jpg │ ├── user-register-flow.jpg │ ├── user-register-uml.jpg │ ├── user-relation-flow.jpg │ ├── user-relation-uml.jpg │ ├── video-comment-flow.jpg │ ├── video-comment-list-flow.jpg │ ├── video-comment-list-uml.jpg │ ├── video-comment-uml.jpg │ ├── video-favorite-flow.jpg │ ├── video-favorite-list-flow.jpg │ ├── video-favorite-list-uml.jpg │ ├── video-favorite-uml.jpg │ ├── video-feed-flow.jpg │ ├── video-feed-uml.jpg │ ├── video-module.png │ ├── video-publish-flow.jpg │ ├── video-publish-list-flow.jpg │ ├── video-publish-list-uml.jpg │ └── video-publish-uml.jpg │ ├── user.md │ └── video.md └── utils ├── file └── file.go ├── redix └── redis.go └── service.go /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/.drone.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/README.md -------------------------------------------------------------------------------- /app/common/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/config.go -------------------------------------------------------------------------------- /app/common/config/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/custom.go -------------------------------------------------------------------------------- /app/common/config/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/entry.go -------------------------------------------------------------------------------- /app/common/config/internal/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/common/common.go -------------------------------------------------------------------------------- /app/common/config/internal/common/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/common/entry.go -------------------------------------------------------------------------------- /app/common/config/internal/common/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/common/viper.go -------------------------------------------------------------------------------- /app/common/config/internal/consts/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/consts/consts.go -------------------------------------------------------------------------------- /app/common/config/internal/consts/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/consts/error.go -------------------------------------------------------------------------------- /app/common/config/internal/database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/database/database.go -------------------------------------------------------------------------------- /app/common/config/internal/database/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/database/entry.go -------------------------------------------------------------------------------- /app/common/config/internal/database/minio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/database/minio.go -------------------------------------------------------------------------------- /app/common/config/internal/database/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/database/mysql.go -------------------------------------------------------------------------------- /app/common/config/internal/database/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/database/redis.go -------------------------------------------------------------------------------- /app/common/config/internal/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/middleware/cors.go -------------------------------------------------------------------------------- /app/common/config/internal/middleware/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/middleware/entry.go -------------------------------------------------------------------------------- /app/common/config/internal/middleware/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/middleware/jwt.go -------------------------------------------------------------------------------- /app/common/config/internal/middleware/sentinel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/middleware/sentinel.go -------------------------------------------------------------------------------- /app/common/config/internal/types/agollo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/types/agollo.go -------------------------------------------------------------------------------- /app/common/config/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/config/internal/types/types.go -------------------------------------------------------------------------------- /app/common/douyin/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/douyin/consts.go -------------------------------------------------------------------------------- /app/common/errx/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/errx/consts.go -------------------------------------------------------------------------------- /app/common/errx/err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/errx/err.go -------------------------------------------------------------------------------- /app/common/errx/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/errx/id.go -------------------------------------------------------------------------------- /app/common/log/gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/log/gorm.go -------------------------------------------------------------------------------- /app/common/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/log/log.go -------------------------------------------------------------------------------- /app/common/log/logx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/log/logx.go -------------------------------------------------------------------------------- /app/common/log/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/log/options.go -------------------------------------------------------------------------------- /app/common/log/setinel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/log/setinel.go -------------------------------------------------------------------------------- /app/common/middleware/CORSMiddleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/middleware/CORSMiddleware.go -------------------------------------------------------------------------------- /app/common/middleware/JWTAuthMiddleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/middleware/JWTAuthMiddleware.go -------------------------------------------------------------------------------- /app/common/middleware/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/middleware/consts.go -------------------------------------------------------------------------------- /app/common/middleware/sentinelMiddleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/middleware/sentinelMiddleware.go -------------------------------------------------------------------------------- /app/common/model/response/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/model/response/common.go -------------------------------------------------------------------------------- /app/common/mq/nsq/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/mq/nsq/consumer.go -------------------------------------------------------------------------------- /app/common/mq/nsq/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/mq/nsq/log.go -------------------------------------------------------------------------------- /app/common/mq/nsq/nsq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/mq/nsq/nsq.go -------------------------------------------------------------------------------- /app/common/mq/nsq/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/mq/nsq/producer.go -------------------------------------------------------------------------------- /app/common/pprof/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/common/pprof/server.go -------------------------------------------------------------------------------- /app/service/auth/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/Dockerfile -------------------------------------------------------------------------------- /app/service/auth/api/auth.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/auth.api -------------------------------------------------------------------------------- /app/service/auth/api/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/auth.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/config/config.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/consts/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/consts/errorid.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/handler/gettokenbyauthhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/handler/gettokenbyauthhandler.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/handler/readtokenhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/handler/readtokenhandler.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/logic/gettokenbyauthlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/logic/gettokenbyauthlogic.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/logic/readtokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/logic/readtokenlogic.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/model/token/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/model/token/consts.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/model/token/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/model/token/init.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/model/token/token_granter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/model/token/token_granter.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/model/token/token_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/model/token/token_server.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/model/token/token_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/model/token/token_service.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/auth/api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/api/internal/types/types.go -------------------------------------------------------------------------------- /app/service/auth/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/consts.go -------------------------------------------------------------------------------- /app/service/auth/internal/auth/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/internal/auth/token.go -------------------------------------------------------------------------------- /app/service/auth/internal/auth/token_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/internal/auth/token_client.go -------------------------------------------------------------------------------- /app/service/auth/internal/sys/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/internal/sys/consts.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/Dockerfile -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/auth.token_enhancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/auth.token_enhancer.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/auth.token_enhancer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/auth.token_enhancer.proto -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/internal/config/config.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/internal/consts/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/internal/consts/errorid.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/internal/logic/generatetokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/internal/logic/generatetokenlogic.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/internal/logic/readtokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/internal/logic/readtokenlogic.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/internal/model/jwt/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/internal/model/jwt/consts.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/internal/model/jwt/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/internal/model/jwt/errorid.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/internal/model/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/internal/model/jwt/jwt.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/internal/server/tokenenhancerserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/internal/server/tokenenhancerserver.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/pb/auth.token_enhancer.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/pb/auth.token_enhancer.pb.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/pb/auth.token_enhancer_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/pb/auth.token_enhancer_grpc.pb.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/enhancer/tokenenhancer/tokenenhancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/enhancer/tokenenhancer/tokenenhancer.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/Dockerfile -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/auth.token_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/auth.token_store.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/auth.token_store.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/auth.token_store.proto -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/internal/config/config.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/internal/consts/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/internal/consts/consts.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/internal/consts/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/internal/consts/errorid.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/internal/logic/gettokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/internal/logic/gettokenlogic.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/internal/logic/removetokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/internal/logic/removetokenlogic.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/internal/logic/storetokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/internal/logic/storetokenlogic.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/internal/server/tokenstoreserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/internal/server/tokenstoreserver.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/pb/auth.token_store.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/pb/auth.token_store.pb.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/pb/auth.token_store_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/pb/auth.token_store_grpc.pb.go -------------------------------------------------------------------------------- /app/service/auth/rpc/token/store/tokenstore/tokenstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/auth/rpc/token/store/tokenstore/tokenstore.go -------------------------------------------------------------------------------- /app/service/chat/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/Dockerfile -------------------------------------------------------------------------------- /app/service/chat/api/chat.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/chat.api -------------------------------------------------------------------------------- /app/service/chat/api/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/chat.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/config/config.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/consts/chat/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/consts/chat/errorid.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/consts/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/consts/errorid.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/handler/getmessagelisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/handler/getmessagelisthandler.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/handler/sendmessagehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/handler/sendmessagehandler.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/logic/getmessagelistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/logic/getmessagelistlogic.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/logic/sendmessagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/logic/sendmessagelogic.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/types/types.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/init.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/client/client.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/client/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/client/types.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/config/config.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/model/request/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/model/request/request.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/model/response/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/model/response/response.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/service/listen/internal/handler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/service/listen/internal/handler/handler.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/service/listen/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/service/listen/listen.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/service/manager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/service/manager/manager.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/service/manager/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/service/manager/process.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/service/manager/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/service/manager/types.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/service/service.go -------------------------------------------------------------------------------- /app/service/chat/api/internal/ws/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/api/internal/ws/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/chat/internal/sys/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/internal/sys/consts.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/Dockerfile -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/chat.sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/chat.sys.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/chat.sys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/chat.sys.proto -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/internal/config/config.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/internal/consts/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/internal/consts/errorid.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/internal/logic/getmessagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/internal/logic/getmessagelogic.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/internal/logic/sendmessagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/internal/logic/sendmessagelogic.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/internal/logic/storemessagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/internal/logic/storemessagelogic.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/internal/model/dao/entity/chat_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/internal/model/dao/entity/chat_message.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/internal/server/sysserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/internal/server/sysserver.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/pb/chat.sys.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/pb/chat.sys.pb.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/pb/chat.sys_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/pb/chat.sys_grpc.pb.go -------------------------------------------------------------------------------- /app/service/chat/rpc/sys/sys/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/chat/rpc/sys/sys/sys.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/Dockerfile -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/consumer.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/internal/config/config.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/listen/chat/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/internal/listen/chat/handler.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/listen/chat/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/internal/listen/chat/service.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/listen/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/internal/listen/listen.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/listen/user/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/internal/listen/user/handler.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/listen/user/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/internal/listen/user/service.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/listen/video/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/internal/listen/video/handler.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/listen/video/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/internal/listen/video/service.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/consumer/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/mq/nsq/internal/consts/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/internal/consts/consts.go -------------------------------------------------------------------------------- /app/service/mq/nsq/producer/chat/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/producer/chat/producer.go -------------------------------------------------------------------------------- /app/service/mq/nsq/producer/user/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/producer/user/producer.go -------------------------------------------------------------------------------- /app/service/mq/nsq/producer/video/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/mq/nsq/producer/video/producer.go -------------------------------------------------------------------------------- /app/service/user/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/Dockerfile -------------------------------------------------------------------------------- /app/service/user/api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/config/config.go -------------------------------------------------------------------------------- /app/service/user/api/internal/consts/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/consts/errorid.go -------------------------------------------------------------------------------- /app/service/user/api/internal/consts/profile/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/consts/profile/errorid.go -------------------------------------------------------------------------------- /app/service/user/api/internal/consts/relation/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/consts/relation/errorid.go -------------------------------------------------------------------------------- /app/service/user/api/internal/consts/sign/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/consts/sign/errorid.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/getfollowerlisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/handler/getfollowerlisthandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/getfollowlisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/handler/getfollowlisthandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/getfriendlisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/handler/getfriendlisthandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/getprofilehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/handler/getprofilehandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/loginhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/handler/loginhandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/registerhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/handler/registerhandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/relationhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/handler/relationhandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/getfollowerlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/logic/getfollowerlistlogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/getfollowlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/logic/getfollowlistlogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/getfriendlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/logic/getfriendlistlogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/getprofilelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/logic/getprofilelogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/loginlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/logic/loginlogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/registerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/logic/registerlogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/relationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/logic/relationlogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/user/api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/internal/types/types.go -------------------------------------------------------------------------------- /app/service/user/api/user.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/user.api -------------------------------------------------------------------------------- /app/service/user/api/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/api/user.go -------------------------------------------------------------------------------- /app/service/user/internal/sys/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/internal/sys/consts.go -------------------------------------------------------------------------------- /app/service/user/internal/user/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/internal/user/consts.go -------------------------------------------------------------------------------- /app/service/user/internal/video/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/internal/video/consts.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/Dockerfile -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/config/config.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/logic/getfollowerlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/logic/getfollowerlistlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/logic/getfollowlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/logic/getfollowlistlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/logic/getfriendlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/logic/getfriendlistlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/logic/getprofilelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/logic/getprofilelogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/logic/loginlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/logic/loginlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/logic/registerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/logic/registerlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/logic/relationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/logic/relationlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/consts/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/consts/errorid.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/dao/entity/chat_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/dao/entity/chat_message.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/dao/entity/user_subject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/dao/entity/user_subject.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/dao/entity/video_subject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/dao/entity/video_subject.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/profile/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/profile/error.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/profile/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/profile/errorid.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/profile/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/profile/model.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/relation/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/relation/error.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/relation/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/relation/errorid.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/relation/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/relation/model.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/sign/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/sign/error.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/sign/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/sign/errorid.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/model/sign/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/model/sign/model.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/server/sysserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/server/sysserver.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/pb/user.sys.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/pb/user.sys.pb.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/pb/user.sys_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/pb/user.sys_grpc.pb.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/sys/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/sys/sys.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/user.sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/user.sys.go -------------------------------------------------------------------------------- /app/service/user/rpc/sys/user.sys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/user/rpc/sys/user.sys.proto -------------------------------------------------------------------------------- /app/service/video/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/Dockerfile -------------------------------------------------------------------------------- /app/service/video/api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/config/config.go -------------------------------------------------------------------------------- /app/service/video/api/internal/consts/crud/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/consts/crud/errorid.go -------------------------------------------------------------------------------- /app/service/video/api/internal/consts/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/consts/errorid.go -------------------------------------------------------------------------------- /app/service/video/api/internal/consts/info/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/consts/info/errorid.go -------------------------------------------------------------------------------- /app/service/video/api/internal/handler/commenthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/handler/commenthandler.go -------------------------------------------------------------------------------- /app/service/video/api/internal/handler/favoritehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/handler/favoritehandler.go -------------------------------------------------------------------------------- /app/service/video/api/internal/handler/feedhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/handler/feedhandler.go -------------------------------------------------------------------------------- /app/service/video/api/internal/handler/getcommentlisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/handler/getcommentlisthandler.go -------------------------------------------------------------------------------- /app/service/video/api/internal/handler/getfavoritelisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/handler/getfavoritelisthandler.go -------------------------------------------------------------------------------- /app/service/video/api/internal/handler/getpublishlisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/handler/getpublishlisthandler.go -------------------------------------------------------------------------------- /app/service/video/api/internal/handler/publishhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/handler/publishhandler.go -------------------------------------------------------------------------------- /app/service/video/api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/service/video/api/internal/logic/commentlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/logic/commentlogic.go -------------------------------------------------------------------------------- /app/service/video/api/internal/logic/favoritelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/logic/favoritelogic.go -------------------------------------------------------------------------------- /app/service/video/api/internal/logic/feedlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/logic/feedlogic.go -------------------------------------------------------------------------------- /app/service/video/api/internal/logic/getcommentlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/logic/getcommentlistlogic.go -------------------------------------------------------------------------------- /app/service/video/api/internal/logic/getfavoritelistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/logic/getfavoritelistlogic.go -------------------------------------------------------------------------------- /app/service/video/api/internal/logic/getpublishlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/logic/getpublishlistlogic.go -------------------------------------------------------------------------------- /app/service/video/api/internal/logic/publishlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/logic/publishlogic.go -------------------------------------------------------------------------------- /app/service/video/api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/video/api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/internal/types/types.go -------------------------------------------------------------------------------- /app/service/video/api/video.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/video.api -------------------------------------------------------------------------------- /app/service/video/api/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/api/video.go -------------------------------------------------------------------------------- /app/service/video/internal/sys/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/internal/sys/sys.go -------------------------------------------------------------------------------- /app/service/video/internal/video/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/internal/video/consts.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/Dockerfile -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/config/config.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/logic/commentlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/logic/commentlogic.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/logic/favoritelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/logic/favoritelogic.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/logic/feedlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/logic/feedlogic.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/logic/getcommentlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/logic/getcommentlistlogic.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/logic/getfavoritelistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/logic/getfavoritelistlogic.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/logic/getpublishlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/logic/getpublishlistlogic.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/logic/managecommentlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/logic/managecommentlogic.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/logic/publishlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/logic/publishlogic.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/model/consts/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/model/consts/errorid.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/model/crud/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/model/crud/consts.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/model/crud/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/model/crud/error.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/model/crud/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/model/crud/errorid.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/model/crud/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/model/crud/model.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/model/dao/entity/comment_subject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/model/dao/entity/comment_subject.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/model/dao/entity/video_subject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/model/dao/entity/video_subject.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/model/info/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/model/info/error.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/model/info/errorid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/model/info/errorid.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/model/info/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/model/info/model.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/server/sysserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/server/sysserver.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/pb/video.sys.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/pb/video.sys.pb.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/pb/video.sys_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/pb/video.sys_grpc.pb.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/sys/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/sys/sys.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/video.sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/video.sys.go -------------------------------------------------------------------------------- /app/service/video/rpc/sys/video.sys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/app/service/video/rpc/sys/video.sys.proto -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/go.sum -------------------------------------------------------------------------------- /manifest/.goctl/douyin/api/config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/api/config.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/api/context.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/api/context.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/api/handler.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/api/handler.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/api/logic.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/api/logic.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/api/main.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/api/main.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/api/middleware.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/api/middleware.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/api/route-addition.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/api/route-addition.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/api/routes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/api/routes.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/api/template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/api/template.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/api/types.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/api/types.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/docker/docker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/docker/docker.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/kube/deployment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/kube/deployment.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/kube/job.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/kube/job.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/delete.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/err.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/err.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/field.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/field.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/find-one-by-field-extra-method.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/find-one-by-field-extra-method.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/find-one-by-field.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/find-one-by-field.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/find-one.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/find-one.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/import-no-cache.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/import-no-cache.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/import.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/import.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/insert.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/insert.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/interface-delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/interface-delete.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/interface-find-one-by-field.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/interface-find-one-by-field.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/interface-find-one.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/interface-find-one.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/interface-insert.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/interface-insert.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/interface-update.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/interface-update.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/model-gen.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/model-gen.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/model-new.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/model-new.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/model.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/model.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/table-name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/table-name.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/tag.tpl: -------------------------------------------------------------------------------- 1 | `db:"{{.field}}"` -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/types.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/types.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/update.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/update.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/model/var.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/model/var.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/mongo/err.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/mongo/err.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/mongo/model.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/mongo/model.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/mongo/model_custom.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/mongo/model_custom.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/mongo/model_types.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/mongo/model_types.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/newapi/newtemplate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/newapi/newtemplate.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/rpc/call.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/rpc/call.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/rpc/config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/rpc/config.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/rpc/etc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/rpc/etc.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/rpc/logic-func.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/rpc/logic-func.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/rpc/logic.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/rpc/logic.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/rpc/main.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/rpc/main.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/rpc/server-func.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/rpc/server-func.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/rpc/server.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/rpc/server.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/rpc/svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/rpc/svc.tpl -------------------------------------------------------------------------------- /manifest/.goctl/douyin/rpc/template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/.goctl/douyin/rpc/template.tpl -------------------------------------------------------------------------------- /manifest/config/dict/default_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/config/dict/default_dict.txt -------------------------------------------------------------------------------- /manifest/deploy/image/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/deploy/image/base/Dockerfile -------------------------------------------------------------------------------- /manifest/deploy/image/ffmpeg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/deploy/image/ffmpeg/Dockerfile -------------------------------------------------------------------------------- /manifest/docs/assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/assembly.md -------------------------------------------------------------------------------- /manifest/docs/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/auth.md -------------------------------------------------------------------------------- /manifest/docs/chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/chat.md -------------------------------------------------------------------------------- /manifest/docs/image/apollo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/apollo.svg -------------------------------------------------------------------------------- /manifest/docs/image/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/architecture.png -------------------------------------------------------------------------------- /manifest/docs/image/auth-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/auth-module.png -------------------------------------------------------------------------------- /manifest/docs/image/award.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/award.jpg -------------------------------------------------------------------------------- /manifest/docs/image/chat-list-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/chat-list-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/chat-list-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/chat-list-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/chat-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/chat-module.png -------------------------------------------------------------------------------- /manifest/docs/image/chat-send-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/chat-send-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/chat-send-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/chat-send-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/consul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/consul.svg -------------------------------------------------------------------------------- /manifest/docs/image/env-apollo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/env-apollo.png -------------------------------------------------------------------------------- /manifest/docs/image/go-zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/go-zero.png -------------------------------------------------------------------------------- /manifest/docs/image/jaeger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/jaeger.svg -------------------------------------------------------------------------------- /manifest/docs/image/mapreduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/mapreduce.png -------------------------------------------------------------------------------- /manifest/docs/image/minio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/minio.png -------------------------------------------------------------------------------- /manifest/docs/image/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/mysql.svg -------------------------------------------------------------------------------- /manifest/docs/image/nsq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/nsq.png -------------------------------------------------------------------------------- /manifest/docs/image/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/redis.svg -------------------------------------------------------------------------------- /manifest/docs/image/relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/relation.png -------------------------------------------------------------------------------- /manifest/docs/image/traefik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/traefik.png -------------------------------------------------------------------------------- /manifest/docs/image/user-list-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-list-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/user-list-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-list-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/user-login-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-login-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/user-login-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-login-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/user-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-module.png -------------------------------------------------------------------------------- /manifest/docs/image/user-profile-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-profile-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/user-profile-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-profile-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/user-register-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-register-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/user-register-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-register-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/user-relation-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-relation-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/user-relation-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/user-relation-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-comment-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-comment-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-comment-list-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-comment-list-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-comment-list-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-comment-list-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-comment-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-comment-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-favorite-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-favorite-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-favorite-list-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-favorite-list-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-favorite-list-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-favorite-list-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-favorite-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-favorite-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-feed-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-feed-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-feed-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-feed-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-module.png -------------------------------------------------------------------------------- /manifest/docs/image/video-publish-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-publish-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-publish-list-flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-publish-list-flow.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-publish-list-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-publish-list-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/image/video-publish-uml.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/image/video-publish-uml.jpg -------------------------------------------------------------------------------- /manifest/docs/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/user.md -------------------------------------------------------------------------------- /manifest/docs/video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/manifest/docs/video.md -------------------------------------------------------------------------------- /utils/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/utils/file/file.go -------------------------------------------------------------------------------- /utils/redix/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/utils/redix/redis.go -------------------------------------------------------------------------------- /utils/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarisW/douyin/HEAD/utils/service.go --------------------------------------------------------------------------------