├── .drone.yml ├── README.md ├── app ├── common │ ├── config │ │ ├── config.go │ │ ├── consts.go │ │ ├── cookie.go │ │ ├── custom.go │ │ ├── database.go │ │ ├── main.go │ │ └── oauth.go │ ├── log │ │ ├── log.go │ │ ├── logx.go │ │ └── option.go │ ├── middleware │ │ └── authMiddleware.go │ ├── model │ │ └── response │ │ │ └── common.go │ └── mq │ │ └── nsq │ │ ├── consumer.go │ │ ├── log.go │ │ ├── nsq.go │ │ ├── nsq_test.go │ │ ├── producer.go │ │ └── producer_test.go ├── service │ ├── comment │ │ ├── api │ │ │ ├── Dockerfile │ │ │ ├── comment.api │ │ │ ├── comment.go │ │ │ └── internal │ │ │ │ ├── config │ │ │ │ └── config.go │ │ │ │ ├── handler │ │ │ │ ├── crudhandler.go │ │ │ │ ├── getcommentinfohandler.go │ │ │ │ ├── getcommentsubjectidhandler.go │ │ │ │ ├── getcommentsubjectindexhandler.go │ │ │ │ ├── getcommentsubjectinfohandler.go │ │ │ │ └── routes.go │ │ │ │ ├── logic │ │ │ │ ├── crudlogic.go │ │ │ │ ├── getcommentinfologic.go │ │ │ │ ├── getcommentsubjectidlogic.go │ │ │ │ ├── getcommentsubjectindexlogic.go │ │ │ │ └── getcommentsubjectinfologic.go │ │ │ │ ├── svc │ │ │ │ └── servicecontext.go │ │ │ │ └── types │ │ │ │ └── types.go │ │ ├── dao │ │ │ ├── model │ │ │ │ ├── comment_content.gen.go │ │ │ │ ├── comment_index.gen.go │ │ │ │ └── comment_subject.gen.go │ │ │ └── query │ │ │ │ ├── comment_content.gen.go │ │ │ │ ├── comment_index.gen.go │ │ │ │ ├── comment_subject.gen.go │ │ │ │ └── gen.go │ │ └── rpc │ │ │ ├── crud │ │ │ ├── Dockerfile │ │ │ ├── crud.go │ │ │ ├── crud.proto │ │ │ ├── crud │ │ │ │ └── crud.go │ │ │ ├── internal │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── logic │ │ │ │ │ ├── deletecommentlogic.go │ │ │ │ │ └── publishcommentlogic.go │ │ │ │ ├── server │ │ │ │ │ └── crudserver.go │ │ │ │ └── svc │ │ │ │ │ └── servicecontext.go │ │ │ └── pb │ │ │ │ ├── crud.pb.go │ │ │ │ └── crud_grpc.pb.go │ │ │ └── info │ │ │ ├── Dockerfile │ │ │ ├── info.go │ │ │ ├── info.proto │ │ │ ├── info │ │ │ └── info.go │ │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── logic │ │ │ │ ├── getcommentinfologic.go │ │ │ │ ├── getcommentsubjectidlogic.go │ │ │ │ ├── getcommentsubjectindexlogic.go │ │ │ │ └── getcommentsubjectinfologic.go │ │ │ ├── server │ │ │ │ └── infoserver.go │ │ │ └── svc │ │ │ │ └── servicecontext.go │ │ │ └── pb │ │ │ ├── info.pb.go │ │ │ └── info_grpc.pb.go │ ├── mq │ │ ├── asynq │ │ │ ├── processor │ │ │ │ ├── Dockerfile │ │ │ │ ├── internal │ │ │ │ │ ├── config │ │ │ │ │ │ └── config.go │ │ │ │ │ ├── logic │ │ │ │ │ │ ├── comment │ │ │ │ │ │ │ └── task.go │ │ │ │ │ │ ├── notification │ │ │ │ │ │ │ └── task.go │ │ │ │ │ │ ├── question │ │ │ │ │ │ │ └── task.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ └── user │ │ │ │ │ │ │ └── task.go │ │ │ │ │ └── svc │ │ │ │ │ │ └── servicecontext.go │ │ │ │ ├── job │ │ │ │ │ ├── job_payload.go │ │ │ │ │ └── job_type.go │ │ │ │ └── processor.go │ │ │ └── scheduler │ │ │ │ ├── Dockerfile │ │ │ │ ├── internal │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── logic │ │ │ │ │ ├── comment_handler.go │ │ │ │ │ ├── question_handler.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── user_handler.go │ │ │ │ └── svc │ │ │ │ │ └── servicecontext.go │ │ │ │ └── scheduler.go │ │ └── nsq │ │ │ ├── consumer │ │ │ ├── Dockerfile │ │ │ ├── consumer.go │ │ │ └── internal │ │ │ │ ├── config │ │ │ │ └── config.go │ │ │ │ ├── listen │ │ │ │ ├── listen.go │ │ │ │ └── notification │ │ │ │ │ ├── handler.go │ │ │ │ │ └── service.go │ │ │ │ └── svc │ │ │ │ └── servicecontext.go │ │ │ └── producer │ │ │ └── notification │ │ │ └── producer.go │ ├── notification │ │ ├── api │ │ │ ├── Dockerfile │ │ │ ├── internal │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── handler │ │ │ │ │ ├── getnotificationhandler.go │ │ │ │ │ └── routes.go │ │ │ │ ├── logic │ │ │ │ │ └── getnotificationlogic.go │ │ │ │ ├── svc │ │ │ │ │ └── servicecontext.go │ │ │ │ └── types │ │ │ │ │ └── types.go │ │ │ ├── notification.api │ │ │ └── notification.go │ │ ├── dao │ │ │ ├── model │ │ │ │ ├── notification_content.gen.go │ │ │ │ └── notification_subject.gen.go │ │ │ ├── notification.proto │ │ │ ├── pb │ │ │ │ └── notification.pb.go │ │ │ └── query │ │ │ │ ├── gen.go │ │ │ │ ├── notification_content.gen.go │ │ │ │ └── notification_subject.gen.go │ │ └── rpc │ │ │ ├── crud │ │ │ ├── Dockerfile │ │ │ ├── crud.go │ │ │ ├── crud.proto │ │ │ ├── crud │ │ │ │ └── crud.go │ │ │ ├── internal │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── logic │ │ │ │ │ ├── deletenotificationlogic.go │ │ │ │ │ └── publishnotificationlogic.go │ │ │ │ ├── server │ │ │ │ │ └── crudserver.go │ │ │ │ └── svc │ │ │ │ │ └── servicecontext.go │ │ │ └── pb │ │ │ │ ├── crud.pb.go │ │ │ │ └── crud_grpc.pb.go │ │ │ └── info │ │ │ ├── Dockerfile │ │ │ ├── info.go │ │ │ ├── info.proto │ │ │ ├── info │ │ │ └── info.go │ │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── logic │ │ │ │ └── getnotificationlogic.go │ │ │ ├── server │ │ │ │ └── infoserver.go │ │ │ └── svc │ │ │ │ └── servicecontext.go │ │ │ └── pb │ │ │ ├── info.pb.go │ │ │ └── info_grpc.pb.go │ ├── oauth │ │ ├── api │ │ │ ├── Dockerfile │ │ │ ├── internal │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── handler │ │ │ │ │ ├── checktokenhandler.go │ │ │ │ │ ├── gettokenhandler.go │ │ │ │ │ ├── getuserinfohandler.go │ │ │ │ │ ├── readtokenhandler.go │ │ │ │ │ ├── refreshtokenhandler.go │ │ │ │ │ └── routes.go │ │ │ │ ├── logic │ │ │ │ │ ├── checktokenlogic.go │ │ │ │ │ ├── gettokenlogic.go │ │ │ │ │ ├── getuserinfologic.go │ │ │ │ │ ├── readtokenlogic.go │ │ │ │ │ └── refreshtokenlogic.go │ │ │ │ ├── svc │ │ │ │ │ └── servicecontext.go │ │ │ │ ├── token │ │ │ │ │ └── granter.go │ │ │ │ └── types │ │ │ │ │ └── types.go │ │ │ ├── oauth.api │ │ │ └── oauth.go │ │ ├── model │ │ │ ├── token_details.go │ │ │ ├── token_error.go │ │ │ ├── token_granter.go │ │ │ └── token_service.go │ │ └── rpc │ │ │ └── token │ │ │ ├── enhancer │ │ │ ├── Dockerfile │ │ │ ├── internal │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── jwt │ │ │ │ │ ├── claims.go │ │ │ │ │ └── jwt.go │ │ │ │ ├── logic │ │ │ │ │ ├── createaccesstokenlogic.go │ │ │ │ │ ├── getuserdetailslogic.go │ │ │ │ │ ├── readoauthtokenlogic.go │ │ │ │ │ └── refreshaccesstokenlogic.go │ │ │ │ ├── server │ │ │ │ │ └── tokenenhancerserver.go │ │ │ │ └── svc │ │ │ │ │ └── servicecontext.go │ │ │ ├── pb │ │ │ │ ├── token_enhancer.pb.go │ │ │ │ └── token_enhancer_grpc.pb.go │ │ │ ├── token_enhancer.go │ │ │ ├── token_enhancer.proto │ │ │ └── tokenenhancer │ │ │ │ └── tokenenhancer.go │ │ │ └── store │ │ │ ├── Dockerfile │ │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── logic │ │ │ │ ├── checktokenlogic.go │ │ │ │ ├── gettokenlogic.go │ │ │ │ ├── removetokenlogic.go │ │ │ │ └── storetokenlogic.go │ │ │ ├── server │ │ │ │ └── tokenstoreserver.go │ │ │ └── svc │ │ │ │ └── servicecontext.go │ │ │ ├── pb │ │ │ ├── token_store.pb.go │ │ │ └── token_store_grpc.pb.go │ │ │ ├── token_store.go │ │ │ ├── token_store.proto │ │ │ └── tokenstore │ │ │ └── tokenstore.go │ ├── question │ │ ├── api │ │ │ ├── Dockerfile │ │ │ ├── internal │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── handler │ │ │ │ │ ├── crudhandler.go │ │ │ │ │ ├── getanswerhandler.go │ │ │ │ │ ├── getquestionhandler.go │ │ │ │ │ └── routes.go │ │ │ │ ├── logic │ │ │ │ │ ├── crudlogic.go │ │ │ │ │ ├── getanswerlogic.go │ │ │ │ │ └── getquestionlogic.go │ │ │ │ ├── svc │ │ │ │ │ └── servicecontext.go │ │ │ │ └── types │ │ │ │ │ └── types.go │ │ │ ├── question.api │ │ │ └── question.go │ │ ├── dao │ │ │ ├── model │ │ │ │ ├── answer_content.gen.go │ │ │ │ ├── answer_index.gen.go │ │ │ │ ├── question_content.gen.go │ │ │ │ └── question_subject.gen.go │ │ │ ├── pb │ │ │ │ └── question.pb.go │ │ │ ├── query │ │ │ │ ├── answer_content.gen.go │ │ │ │ ├── answer_index.gen.go │ │ │ │ ├── gen.go │ │ │ │ ├── question_content.gen.go │ │ │ │ └── question_subject.gen.go │ │ │ └── question.proto │ │ └── rpc │ │ │ ├── crud │ │ │ ├── Dockerfile │ │ │ ├── crud.go │ │ │ ├── crud.proto │ │ │ ├── crud │ │ │ │ └── crud.go │ │ │ ├── internal │ │ │ │ ├── config │ │ │ │ │ └── config.go │ │ │ │ ├── logic │ │ │ │ │ ├── changeattrlogic.go │ │ │ │ │ ├── deleteanswerlogic.go │ │ │ │ │ ├── deletequestionlogic.go │ │ │ │ │ ├── hideanswerlogic.go │ │ │ │ │ ├── hidequestionlogic.go │ │ │ │ │ ├── publishanswerlogic.go │ │ │ │ │ ├── publishquestionlogic.go │ │ │ │ │ ├── updateanswerlogic.go │ │ │ │ │ └── updatequestionlogic.go │ │ │ │ ├── server │ │ │ │ │ └── crudserver.go │ │ │ │ └── svc │ │ │ │ │ └── servicecontext.go │ │ │ └── pb │ │ │ │ ├── crud.pb.go │ │ │ │ └── crud_grpc.pb.go │ │ │ └── info │ │ │ ├── Dockerfile │ │ │ ├── info.go │ │ │ ├── info.proto │ │ │ ├── info │ │ │ └── info.go │ │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── logic │ │ │ │ ├── getanswerlogic.go │ │ │ │ └── getquestionlogic.go │ │ │ ├── server │ │ │ │ └── infoserver.go │ │ │ └── svc │ │ │ │ └── servicecontext.go │ │ │ └── pb │ │ │ ├── info.pb.go │ │ │ └── info_grpc.pb.go │ └── user │ │ ├── api │ │ ├── Dockerfile │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── handler │ │ │ │ ├── changenicknamehandler.go │ │ │ │ ├── docollectionhandler.go │ │ │ │ ├── getcollectioninfohandler.go │ │ │ │ ├── getfolloweridshandler.go │ │ │ │ ├── getnotificationinfohandler.go │ │ │ │ ├── getobjinfohandler.go │ │ │ │ ├── getpersonalinfohandler.go │ │ │ │ ├── loginhandler.go │ │ │ │ ├── registerhandler.go │ │ │ │ ├── routes.go │ │ │ │ ├── vipresethandler.go │ │ │ │ └── vipupgradehandler.go │ │ │ ├── logic │ │ │ │ ├── changenicknamelogic.go │ │ │ │ ├── docollectionlogic.go │ │ │ │ ├── getcollectioninfologic.go │ │ │ │ ├── getfolloweridslogic.go │ │ │ │ ├── getnotificationinfologic.go │ │ │ │ ├── getobjinfologic.go │ │ │ │ ├── getpersonalinfologic.go │ │ │ │ ├── loginlogic.go │ │ │ │ ├── registerlogic.go │ │ │ │ ├── vipresetlogic.go │ │ │ │ └── vipupgradelogic.go │ │ │ ├── svc │ │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ │ └── types.go │ │ ├── user.api │ │ └── user.go │ │ ├── dao │ │ ├── model │ │ │ ├── user_collection.gen.go │ │ │ └── user_subject.gen.go │ │ ├── pb │ │ │ └── user_model.pb.go │ │ ├── query │ │ │ ├── gen.go │ │ │ ├── user_collection.gen.go │ │ │ └── user_subject.gen.go │ │ └── user.proto │ │ └── rpc │ │ ├── crud │ │ ├── Dockerfile │ │ ├── crud.go │ │ ├── crud.proto │ │ ├── crud │ │ │ └── crud.go │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── logic │ │ │ │ ├── changenicknamelogic.go │ │ │ │ ├── docollectionlogic.go │ │ │ │ ├── loginlogic.go │ │ │ │ └── registerlogic.go │ │ │ ├── server │ │ │ │ └── crudserver.go │ │ │ └── svc │ │ │ │ └── servicecontext.go │ │ └── pb │ │ │ ├── crud.pb.go │ │ │ └── crud_grpc.pb.go │ │ ├── info │ │ ├── Dockerfile │ │ ├── info.go │ │ ├── info.proto │ │ ├── info │ │ │ └── info.go │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── logic │ │ │ │ ├── getcollectioninfologic.go │ │ │ │ ├── getfollowerlogic.go │ │ │ │ ├── getnotificationinfologic.go │ │ │ │ ├── getobjinfologic.go │ │ │ │ └── getpersonalinfologic.go │ │ │ ├── server │ │ │ │ └── infoserver.go │ │ │ └── svc │ │ │ │ └── servicecontext.go │ │ └── pb │ │ │ ├── info.pb.go │ │ │ └── info_grpc.pb.go │ │ └── vip │ │ ├── Dockerfile │ │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── logic │ │ │ ├── resetlogic.go │ │ │ └── upgradelogic.go │ │ ├── server │ │ │ └── vipserver.go │ │ └── svc │ │ │ └── servicecontext.go │ │ ├── pb │ │ ├── vip.pb.go │ │ └── vip_grpc.pb.go │ │ ├── vip.go │ │ ├── vip.proto │ │ └── vip │ │ └── vip.go └── utils │ ├── cookie │ └── cookie.go │ ├── file │ └── file.go │ ├── jwt │ ├── claims.go │ └── jwt.go │ ├── mapping │ ├── fieldoptions.go │ ├── jsonx │ │ └── marshaler.go │ ├── lang.go │ ├── mapping.go │ ├── marshaler.go │ ├── unmarshaler.go │ ├── utils.go │ └── valuer.go │ ├── net │ └── ip │ │ └── ip.go │ ├── structx │ ├── struct.go │ └── struct_test.go │ ├── utils.go │ └── utils_test.go ├── docker-compose.yml ├── go.mod ├── go.sum └── manifest ├── apollo ├── NSQ.properties ├── comment.yaml ├── database-dsn.properties ├── gohu.yaml ├── mq.yaml ├── notification.yaml ├── oauth.yaml ├── question.yaml └── user.yaml ├── image ├── answer_content_foreign_key.png ├── answer_content_record.png ├── answer_index_foreign_key.png ├── answer_index_index.png ├── answer_index_record.png ├── apollo.png ├── apollo.svg ├── architecture.jpg ├── asynq.png ├── comment_content_foreign_key.png ├── comment_content_record.png ├── comment_index_foreign_key.png ├── comment_index_index.png ├── comment_index_record.png ├── comment_subject_index.png ├── comment_subject_record.png ├── consul.png ├── consul.svg ├── docker.svg ├── drone.png ├── drone.svg ├── go-zero.png ├── gogs.png ├── jaeger.png ├── jaeger.svg ├── jwt-store.png ├── jwt_cache.png ├── mysql.png ├── mysql.svg ├── notification_content_foreign_key.png ├── notification_content_record.png ├── notification_subject_foreign_key.png ├── notification_subject_record.png ├── notification_subuject_index.png ├── nsq.png ├── question_content_foreign_key.png ├── question_content_record.png ├── question_subject_index.png ├── question_subject_record.png ├── redis.svg ├── traefik-logo.png ├── traefik.png ├── user_collect_set.png ├── user_collection_foreign_key.png ├── user_collection_index.png ├── user_collection_record.png ├── user_follower_member_set.png ├── user_login_cache.png ├── user_register_set.png ├── user_subject_cache.png ├── user_subject_record.png ├── user_subject_record_index.png └── webhook.png ├── sql ├── answer_content.sql ├── answer_index.sql ├── comment_content.sql ├── comment_index.sql ├── comment_subject.sql ├── notification_content.sql ├── notification_subject.sql ├── question_content.sql ├── question_subject.sql ├── user_collection.sql └── user_subject.sql └── 架构图.vsdx /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/.drone.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/README.md -------------------------------------------------------------------------------- /app/common/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/config/config.go -------------------------------------------------------------------------------- /app/common/config/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/config/consts.go -------------------------------------------------------------------------------- /app/common/config/cookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/config/cookie.go -------------------------------------------------------------------------------- /app/common/config/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/config/custom.go -------------------------------------------------------------------------------- /app/common/config/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/config/database.go -------------------------------------------------------------------------------- /app/common/config/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/config/main.go -------------------------------------------------------------------------------- /app/common/config/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/config/oauth.go -------------------------------------------------------------------------------- /app/common/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/log/log.go -------------------------------------------------------------------------------- /app/common/log/logx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/log/logx.go -------------------------------------------------------------------------------- /app/common/log/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/log/option.go -------------------------------------------------------------------------------- /app/common/middleware/authMiddleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/middleware/authMiddleware.go -------------------------------------------------------------------------------- /app/common/model/response/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/model/response/common.go -------------------------------------------------------------------------------- /app/common/mq/nsq/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/mq/nsq/consumer.go -------------------------------------------------------------------------------- /app/common/mq/nsq/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/mq/nsq/log.go -------------------------------------------------------------------------------- /app/common/mq/nsq/nsq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/mq/nsq/nsq.go -------------------------------------------------------------------------------- /app/common/mq/nsq/nsq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/mq/nsq/nsq_test.go -------------------------------------------------------------------------------- /app/common/mq/nsq/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/mq/nsq/producer.go -------------------------------------------------------------------------------- /app/common/mq/nsq/producer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/common/mq/nsq/producer_test.go -------------------------------------------------------------------------------- /app/service/comment/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/Dockerfile -------------------------------------------------------------------------------- /app/service/comment/api/comment.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/comment.api -------------------------------------------------------------------------------- /app/service/comment/api/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/comment.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/config/config.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/handler/crudhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/handler/crudhandler.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/handler/getcommentinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/handler/getcommentinfohandler.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/handler/getcommentsubjectidhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/handler/getcommentsubjectidhandler.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/handler/getcommentsubjectindexhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/handler/getcommentsubjectindexhandler.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/handler/getcommentsubjectinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/handler/getcommentsubjectinfohandler.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/logic/crudlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/logic/crudlogic.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/logic/getcommentinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/logic/getcommentinfologic.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/logic/getcommentsubjectidlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/logic/getcommentsubjectidlogic.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/logic/getcommentsubjectindexlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/logic/getcommentsubjectindexlogic.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/logic/getcommentsubjectinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/logic/getcommentsubjectinfologic.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/comment/api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/api/internal/types/types.go -------------------------------------------------------------------------------- /app/service/comment/dao/model/comment_content.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/dao/model/comment_content.gen.go -------------------------------------------------------------------------------- /app/service/comment/dao/model/comment_index.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/dao/model/comment_index.gen.go -------------------------------------------------------------------------------- /app/service/comment/dao/model/comment_subject.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/dao/model/comment_subject.gen.go -------------------------------------------------------------------------------- /app/service/comment/dao/query/comment_content.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/dao/query/comment_content.gen.go -------------------------------------------------------------------------------- /app/service/comment/dao/query/comment_index.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/dao/query/comment_index.gen.go -------------------------------------------------------------------------------- /app/service/comment/dao/query/comment_subject.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/dao/query/comment_subject.gen.go -------------------------------------------------------------------------------- /app/service/comment/dao/query/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/dao/query/gen.go -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/Dockerfile -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/crud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/crud.go -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/crud.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/crud.proto -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/crud/crud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/crud/crud.go -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/internal/config/config.go -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/internal/logic/deletecommentlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/internal/logic/deletecommentlogic.go -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/internal/logic/publishcommentlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/internal/logic/publishcommentlogic.go -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/internal/server/crudserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/internal/server/crudserver.go -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/pb/crud.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/pb/crud.pb.go -------------------------------------------------------------------------------- /app/service/comment/rpc/crud/pb/crud_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/crud/pb/crud_grpc.pb.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/Dockerfile -------------------------------------------------------------------------------- /app/service/comment/rpc/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/info.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/info.proto -------------------------------------------------------------------------------- /app/service/comment/rpc/info/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/info/info.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/internal/config/config.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/internal/logic/getcommentinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/internal/logic/getcommentinfologic.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/internal/logic/getcommentsubjectidlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/internal/logic/getcommentsubjectidlogic.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/internal/logic/getcommentsubjectindexlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/internal/logic/getcommentsubjectindexlogic.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/internal/logic/getcommentsubjectinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/internal/logic/getcommentsubjectinfologic.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/internal/server/infoserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/internal/server/infoserver.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/pb/info.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/pb/info.pb.go -------------------------------------------------------------------------------- /app/service/comment/rpc/info/pb/info_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/comment/rpc/info/pb/info_grpc.pb.go -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/processor/Dockerfile -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/processor/internal/config/config.go -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/internal/logic/comment/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/processor/internal/logic/comment/task.go -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/internal/logic/notification/task.go: -------------------------------------------------------------------------------- 1 | package notification 2 | -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/internal/logic/question/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/processor/internal/logic/question/task.go -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/internal/logic/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/processor/internal/logic/register.go -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/internal/logic/user/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/processor/internal/logic/user/task.go -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/processor/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/job/job_payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/processor/job/job_payload.go -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/job/job_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/processor/job/job_type.go -------------------------------------------------------------------------------- /app/service/mq/asynq/processor/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/processor/processor.go -------------------------------------------------------------------------------- /app/service/mq/asynq/scheduler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/scheduler/Dockerfile -------------------------------------------------------------------------------- /app/service/mq/asynq/scheduler/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/scheduler/internal/config/config.go -------------------------------------------------------------------------------- /app/service/mq/asynq/scheduler/internal/logic/comment_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/scheduler/internal/logic/comment_handler.go -------------------------------------------------------------------------------- /app/service/mq/asynq/scheduler/internal/logic/question_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/scheduler/internal/logic/question_handler.go -------------------------------------------------------------------------------- /app/service/mq/asynq/scheduler/internal/logic/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/scheduler/internal/logic/register.go -------------------------------------------------------------------------------- /app/service/mq/asynq/scheduler/internal/logic/user_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/scheduler/internal/logic/user_handler.go -------------------------------------------------------------------------------- /app/service/mq/asynq/scheduler/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/scheduler/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/mq/asynq/scheduler/scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/asynq/scheduler/scheduler.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/nsq/consumer/Dockerfile -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/consumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/nsq/consumer/consumer.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/nsq/consumer/internal/config/config.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/listen/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/nsq/consumer/internal/listen/listen.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/listen/notification/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/nsq/consumer/internal/listen/notification/handler.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/listen/notification/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/nsq/consumer/internal/listen/notification/service.go -------------------------------------------------------------------------------- /app/service/mq/nsq/consumer/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/nsq/consumer/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/mq/nsq/producer/notification/producer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/mq/nsq/producer/notification/producer.go -------------------------------------------------------------------------------- /app/service/notification/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/api/Dockerfile -------------------------------------------------------------------------------- /app/service/notification/api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/api/internal/config/config.go -------------------------------------------------------------------------------- /app/service/notification/api/internal/handler/getnotificationhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/api/internal/handler/getnotificationhandler.go -------------------------------------------------------------------------------- /app/service/notification/api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/service/notification/api/internal/logic/getnotificationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/api/internal/logic/getnotificationlogic.go -------------------------------------------------------------------------------- /app/service/notification/api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/notification/api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/api/internal/types/types.go -------------------------------------------------------------------------------- /app/service/notification/api/notification.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/api/notification.api -------------------------------------------------------------------------------- /app/service/notification/api/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/api/notification.go -------------------------------------------------------------------------------- /app/service/notification/dao/model/notification_content.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/dao/model/notification_content.gen.go -------------------------------------------------------------------------------- /app/service/notification/dao/model/notification_subject.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/dao/model/notification_subject.gen.go -------------------------------------------------------------------------------- /app/service/notification/dao/notification.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/dao/notification.proto -------------------------------------------------------------------------------- /app/service/notification/dao/pb/notification.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/dao/pb/notification.pb.go -------------------------------------------------------------------------------- /app/service/notification/dao/query/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/dao/query/gen.go -------------------------------------------------------------------------------- /app/service/notification/dao/query/notification_content.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/dao/query/notification_content.gen.go -------------------------------------------------------------------------------- /app/service/notification/dao/query/notification_subject.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/dao/query/notification_subject.gen.go -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/Dockerfile -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/crud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/crud.go -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/crud.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/crud.proto -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/crud/crud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/crud/crud.go -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/internal/config/config.go -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/internal/logic/deletenotificationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/internal/logic/deletenotificationlogic.go -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/internal/logic/publishnotificationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/internal/logic/publishnotificationlogic.go -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/internal/server/crudserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/internal/server/crudserver.go -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/pb/crud.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/pb/crud.pb.go -------------------------------------------------------------------------------- /app/service/notification/rpc/crud/pb/crud_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/crud/pb/crud_grpc.pb.go -------------------------------------------------------------------------------- /app/service/notification/rpc/info/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/info/Dockerfile -------------------------------------------------------------------------------- /app/service/notification/rpc/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/info/info.go -------------------------------------------------------------------------------- /app/service/notification/rpc/info/info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/info/info.proto -------------------------------------------------------------------------------- /app/service/notification/rpc/info/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/info/info/info.go -------------------------------------------------------------------------------- /app/service/notification/rpc/info/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/info/internal/config/config.go -------------------------------------------------------------------------------- /app/service/notification/rpc/info/internal/logic/getnotificationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/info/internal/logic/getnotificationlogic.go -------------------------------------------------------------------------------- /app/service/notification/rpc/info/internal/server/infoserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/info/internal/server/infoserver.go -------------------------------------------------------------------------------- /app/service/notification/rpc/info/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/info/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/notification/rpc/info/pb/info.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/info/pb/info.pb.go -------------------------------------------------------------------------------- /app/service/notification/rpc/info/pb/info_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/notification/rpc/info/pb/info_grpc.pb.go -------------------------------------------------------------------------------- /app/service/oauth/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/Dockerfile -------------------------------------------------------------------------------- /app/service/oauth/api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/config/config.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/handler/checktokenhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/handler/checktokenhandler.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/handler/gettokenhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/handler/gettokenhandler.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/handler/getuserinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/handler/getuserinfohandler.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/handler/readtokenhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/handler/readtokenhandler.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/handler/refreshtokenhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/handler/refreshtokenhandler.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/logic/checktokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/logic/checktokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/logic/gettokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/logic/gettokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/logic/getuserinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/logic/getuserinfologic.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/logic/readtokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/logic/readtokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/logic/refreshtokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/logic/refreshtokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/token/granter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/token/granter.go -------------------------------------------------------------------------------- /app/service/oauth/api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/internal/types/types.go -------------------------------------------------------------------------------- /app/service/oauth/api/oauth.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/oauth.api -------------------------------------------------------------------------------- /app/service/oauth/api/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/api/oauth.go -------------------------------------------------------------------------------- /app/service/oauth/model/token_details.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/model/token_details.go -------------------------------------------------------------------------------- /app/service/oauth/model/token_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/model/token_error.go -------------------------------------------------------------------------------- /app/service/oauth/model/token_granter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/model/token_granter.go -------------------------------------------------------------------------------- /app/service/oauth/model/token_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/model/token_service.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/Dockerfile -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/internal/config/config.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/internal/jwt/claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/internal/jwt/claims.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/internal/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/internal/jwt/jwt.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/internal/logic/createaccesstokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/internal/logic/createaccesstokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/internal/logic/getuserdetailslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/internal/logic/getuserdetailslogic.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/internal/logic/readoauthtokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/internal/logic/readoauthtokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/internal/logic/refreshaccesstokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/internal/logic/refreshaccesstokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/internal/server/tokenenhancerserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/internal/server/tokenenhancerserver.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/pb/token_enhancer.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/pb/token_enhancer.pb.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/pb/token_enhancer_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/pb/token_enhancer_grpc.pb.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/token_enhancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/token_enhancer.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/token_enhancer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/token_enhancer.proto -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/enhancer/tokenenhancer/tokenenhancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/enhancer/tokenenhancer/tokenenhancer.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/Dockerfile -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/internal/config/config.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/internal/logic/checktokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/internal/logic/checktokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/internal/logic/gettokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/internal/logic/gettokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/internal/logic/removetokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/internal/logic/removetokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/internal/logic/storetokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/internal/logic/storetokenlogic.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/internal/server/tokenstoreserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/internal/server/tokenstoreserver.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/pb/token_store.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/pb/token_store.pb.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/pb/token_store_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/pb/token_store_grpc.pb.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/token_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/token_store.go -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/token_store.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/token_store.proto -------------------------------------------------------------------------------- /app/service/oauth/rpc/token/store/tokenstore/tokenstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/oauth/rpc/token/store/tokenstore/tokenstore.go -------------------------------------------------------------------------------- /app/service/question/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/Dockerfile -------------------------------------------------------------------------------- /app/service/question/api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/internal/config/config.go -------------------------------------------------------------------------------- /app/service/question/api/internal/handler/crudhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/internal/handler/crudhandler.go -------------------------------------------------------------------------------- /app/service/question/api/internal/handler/getanswerhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/internal/handler/getanswerhandler.go -------------------------------------------------------------------------------- /app/service/question/api/internal/handler/getquestionhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/internal/handler/getquestionhandler.go -------------------------------------------------------------------------------- /app/service/question/api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/service/question/api/internal/logic/crudlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/internal/logic/crudlogic.go -------------------------------------------------------------------------------- /app/service/question/api/internal/logic/getanswerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/internal/logic/getanswerlogic.go -------------------------------------------------------------------------------- /app/service/question/api/internal/logic/getquestionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/internal/logic/getquestionlogic.go -------------------------------------------------------------------------------- /app/service/question/api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/question/api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/internal/types/types.go -------------------------------------------------------------------------------- /app/service/question/api/question.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/question.api -------------------------------------------------------------------------------- /app/service/question/api/question.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/api/question.go -------------------------------------------------------------------------------- /app/service/question/dao/model/answer_content.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/model/answer_content.gen.go -------------------------------------------------------------------------------- /app/service/question/dao/model/answer_index.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/model/answer_index.gen.go -------------------------------------------------------------------------------- /app/service/question/dao/model/question_content.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/model/question_content.gen.go -------------------------------------------------------------------------------- /app/service/question/dao/model/question_subject.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/model/question_subject.gen.go -------------------------------------------------------------------------------- /app/service/question/dao/pb/question.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/pb/question.pb.go -------------------------------------------------------------------------------- /app/service/question/dao/query/answer_content.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/query/answer_content.gen.go -------------------------------------------------------------------------------- /app/service/question/dao/query/answer_index.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/query/answer_index.gen.go -------------------------------------------------------------------------------- /app/service/question/dao/query/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/query/gen.go -------------------------------------------------------------------------------- /app/service/question/dao/query/question_content.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/query/question_content.gen.go -------------------------------------------------------------------------------- /app/service/question/dao/query/question_subject.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/query/question_subject.gen.go -------------------------------------------------------------------------------- /app/service/question/dao/question.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/dao/question.proto -------------------------------------------------------------------------------- /app/service/question/rpc/crud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/Dockerfile -------------------------------------------------------------------------------- /app/service/question/rpc/crud/crud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/crud.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/crud.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/crud.proto -------------------------------------------------------------------------------- /app/service/question/rpc/crud/crud/crud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/crud/crud.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/config/config.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/logic/changeattrlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/logic/changeattrlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/logic/deleteanswerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/logic/deleteanswerlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/logic/deletequestionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/logic/deletequestionlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/logic/hideanswerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/logic/hideanswerlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/logic/hidequestionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/logic/hidequestionlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/logic/publishanswerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/logic/publishanswerlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/logic/publishquestionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/logic/publishquestionlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/logic/updateanswerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/logic/updateanswerlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/logic/updatequestionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/logic/updatequestionlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/server/crudserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/server/crudserver.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/pb/crud.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/pb/crud.pb.go -------------------------------------------------------------------------------- /app/service/question/rpc/crud/pb/crud_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/crud/pb/crud_grpc.pb.go -------------------------------------------------------------------------------- /app/service/question/rpc/info/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/Dockerfile -------------------------------------------------------------------------------- /app/service/question/rpc/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/info.go -------------------------------------------------------------------------------- /app/service/question/rpc/info/info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/info.proto -------------------------------------------------------------------------------- /app/service/question/rpc/info/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/info/info.go -------------------------------------------------------------------------------- /app/service/question/rpc/info/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/internal/config/config.go -------------------------------------------------------------------------------- /app/service/question/rpc/info/internal/logic/getanswerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/internal/logic/getanswerlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/info/internal/logic/getquestionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/internal/logic/getquestionlogic.go -------------------------------------------------------------------------------- /app/service/question/rpc/info/internal/server/infoserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/internal/server/infoserver.go -------------------------------------------------------------------------------- /app/service/question/rpc/info/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/question/rpc/info/pb/info.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/pb/info.pb.go -------------------------------------------------------------------------------- /app/service/question/rpc/info/pb/info_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/question/rpc/info/pb/info_grpc.pb.go -------------------------------------------------------------------------------- /app/service/user/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/Dockerfile -------------------------------------------------------------------------------- /app/service/user/api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/config/config.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/changenicknamehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/changenicknamehandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/docollectionhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/docollectionhandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/getcollectioninfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/getcollectioninfohandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/getfolloweridshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/getfolloweridshandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/getnotificationinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/getnotificationinfohandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/getobjinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/getobjinfohandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/getpersonalinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/getpersonalinfohandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/loginhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/loginhandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/registerhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/registerhandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/vipresethandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/vipresethandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/handler/vipupgradehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/handler/vipupgradehandler.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/changenicknamelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/changenicknamelogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/docollectionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/docollectionlogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/getcollectioninfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/getcollectioninfologic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/getfolloweridslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/getfolloweridslogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/getnotificationinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/getnotificationinfologic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/getobjinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/getobjinfologic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/getpersonalinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/getpersonalinfologic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/loginlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/loginlogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/registerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/registerlogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/vipresetlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/vipresetlogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/logic/vipupgradelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/logic/vipupgradelogic.go -------------------------------------------------------------------------------- /app/service/user/api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/user/api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/internal/types/types.go -------------------------------------------------------------------------------- /app/service/user/api/user.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/user.api -------------------------------------------------------------------------------- /app/service/user/api/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/api/user.go -------------------------------------------------------------------------------- /app/service/user/dao/model/user_collection.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/dao/model/user_collection.gen.go -------------------------------------------------------------------------------- /app/service/user/dao/model/user_subject.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/dao/model/user_subject.gen.go -------------------------------------------------------------------------------- /app/service/user/dao/pb/user_model.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/dao/pb/user_model.pb.go -------------------------------------------------------------------------------- /app/service/user/dao/query/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/dao/query/gen.go -------------------------------------------------------------------------------- /app/service/user/dao/query/user_collection.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/dao/query/user_collection.gen.go -------------------------------------------------------------------------------- /app/service/user/dao/query/user_subject.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/dao/query/user_subject.gen.go -------------------------------------------------------------------------------- /app/service/user/dao/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/dao/user.proto -------------------------------------------------------------------------------- /app/service/user/rpc/crud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/Dockerfile -------------------------------------------------------------------------------- /app/service/user/rpc/crud/crud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/crud.go -------------------------------------------------------------------------------- /app/service/user/rpc/crud/crud.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/crud.proto -------------------------------------------------------------------------------- /app/service/user/rpc/crud/crud/crud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/crud/crud.go -------------------------------------------------------------------------------- /app/service/user/rpc/crud/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/internal/config/config.go -------------------------------------------------------------------------------- /app/service/user/rpc/crud/internal/logic/changenicknamelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/internal/logic/changenicknamelogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/crud/internal/logic/docollectionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/internal/logic/docollectionlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/crud/internal/logic/loginlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/internal/logic/loginlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/crud/internal/logic/registerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/internal/logic/registerlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/crud/internal/server/crudserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/internal/server/crudserver.go -------------------------------------------------------------------------------- /app/service/user/rpc/crud/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/user/rpc/crud/pb/crud.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/pb/crud.pb.go -------------------------------------------------------------------------------- /app/service/user/rpc/crud/pb/crud_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/crud/pb/crud_grpc.pb.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/Dockerfile -------------------------------------------------------------------------------- /app/service/user/rpc/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/info.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/info.proto -------------------------------------------------------------------------------- /app/service/user/rpc/info/info/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/info/info.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/internal/config/config.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/internal/logic/getcollectioninfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/internal/logic/getcollectioninfologic.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/internal/logic/getfollowerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/internal/logic/getfollowerlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/internal/logic/getnotificationinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/internal/logic/getnotificationinfologic.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/internal/logic/getobjinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/internal/logic/getobjinfologic.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/internal/logic/getpersonalinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/internal/logic/getpersonalinfologic.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/internal/server/infoserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/internal/server/infoserver.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/pb/info.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/pb/info.pb.go -------------------------------------------------------------------------------- /app/service/user/rpc/info/pb/info_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/info/pb/info_grpc.pb.go -------------------------------------------------------------------------------- /app/service/user/rpc/vip/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/Dockerfile -------------------------------------------------------------------------------- /app/service/user/rpc/vip/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/internal/config/config.go -------------------------------------------------------------------------------- /app/service/user/rpc/vip/internal/logic/resetlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/internal/logic/resetlogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/vip/internal/logic/upgradelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/internal/logic/upgradelogic.go -------------------------------------------------------------------------------- /app/service/user/rpc/vip/internal/server/vipserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/internal/server/vipserver.go -------------------------------------------------------------------------------- /app/service/user/rpc/vip/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/service/user/rpc/vip/pb/vip.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/pb/vip.pb.go -------------------------------------------------------------------------------- /app/service/user/rpc/vip/pb/vip_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/pb/vip_grpc.pb.go -------------------------------------------------------------------------------- /app/service/user/rpc/vip/vip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/vip.go -------------------------------------------------------------------------------- /app/service/user/rpc/vip/vip.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/vip.proto -------------------------------------------------------------------------------- /app/service/user/rpc/vip/vip/vip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/service/user/rpc/vip/vip/vip.go -------------------------------------------------------------------------------- /app/utils/cookie/cookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/cookie/cookie.go -------------------------------------------------------------------------------- /app/utils/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/file/file.go -------------------------------------------------------------------------------- /app/utils/jwt/claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/jwt/claims.go -------------------------------------------------------------------------------- /app/utils/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/jwt/jwt.go -------------------------------------------------------------------------------- /app/utils/mapping/fieldoptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/mapping/fieldoptions.go -------------------------------------------------------------------------------- /app/utils/mapping/jsonx/marshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/mapping/jsonx/marshaler.go -------------------------------------------------------------------------------- /app/utils/mapping/lang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/mapping/lang.go -------------------------------------------------------------------------------- /app/utils/mapping/mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/mapping/mapping.go -------------------------------------------------------------------------------- /app/utils/mapping/marshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/mapping/marshaler.go -------------------------------------------------------------------------------- /app/utils/mapping/unmarshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/mapping/unmarshaler.go -------------------------------------------------------------------------------- /app/utils/mapping/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/mapping/utils.go -------------------------------------------------------------------------------- /app/utils/mapping/valuer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/mapping/valuer.go -------------------------------------------------------------------------------- /app/utils/net/ip/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/net/ip/ip.go -------------------------------------------------------------------------------- /app/utils/structx/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/structx/struct.go -------------------------------------------------------------------------------- /app/utils/structx/struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/structx/struct_test.go -------------------------------------------------------------------------------- /app/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/utils.go -------------------------------------------------------------------------------- /app/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/app/utils/utils_test.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/go.sum -------------------------------------------------------------------------------- /manifest/apollo/NSQ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/apollo/NSQ.properties -------------------------------------------------------------------------------- /manifest/apollo/comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/apollo/comment.yaml -------------------------------------------------------------------------------- /manifest/apollo/database-dsn.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/apollo/database-dsn.properties -------------------------------------------------------------------------------- /manifest/apollo/gohu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/apollo/gohu.yaml -------------------------------------------------------------------------------- /manifest/apollo/mq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/apollo/mq.yaml -------------------------------------------------------------------------------- /manifest/apollo/notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/apollo/notification.yaml -------------------------------------------------------------------------------- /manifest/apollo/oauth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/apollo/oauth.yaml -------------------------------------------------------------------------------- /manifest/apollo/question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/apollo/question.yaml -------------------------------------------------------------------------------- /manifest/apollo/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/apollo/user.yaml -------------------------------------------------------------------------------- /manifest/image/answer_content_foreign_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/answer_content_foreign_key.png -------------------------------------------------------------------------------- /manifest/image/answer_content_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/answer_content_record.png -------------------------------------------------------------------------------- /manifest/image/answer_index_foreign_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/answer_index_foreign_key.png -------------------------------------------------------------------------------- /manifest/image/answer_index_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/answer_index_index.png -------------------------------------------------------------------------------- /manifest/image/answer_index_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/answer_index_record.png -------------------------------------------------------------------------------- /manifest/image/apollo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/apollo.png -------------------------------------------------------------------------------- /manifest/image/apollo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/apollo.svg -------------------------------------------------------------------------------- /manifest/image/architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/architecture.jpg -------------------------------------------------------------------------------- /manifest/image/asynq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/asynq.png -------------------------------------------------------------------------------- /manifest/image/comment_content_foreign_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/comment_content_foreign_key.png -------------------------------------------------------------------------------- /manifest/image/comment_content_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/comment_content_record.png -------------------------------------------------------------------------------- /manifest/image/comment_index_foreign_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/comment_index_foreign_key.png -------------------------------------------------------------------------------- /manifest/image/comment_index_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/comment_index_index.png -------------------------------------------------------------------------------- /manifest/image/comment_index_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/comment_index_record.png -------------------------------------------------------------------------------- /manifest/image/comment_subject_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/comment_subject_index.png -------------------------------------------------------------------------------- /manifest/image/comment_subject_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/comment_subject_record.png -------------------------------------------------------------------------------- /manifest/image/consul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/consul.png -------------------------------------------------------------------------------- /manifest/image/consul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/consul.svg -------------------------------------------------------------------------------- /manifest/image/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/docker.svg -------------------------------------------------------------------------------- /manifest/image/drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/drone.png -------------------------------------------------------------------------------- /manifest/image/drone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/drone.svg -------------------------------------------------------------------------------- /manifest/image/go-zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/go-zero.png -------------------------------------------------------------------------------- /manifest/image/gogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/gogs.png -------------------------------------------------------------------------------- /manifest/image/jaeger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/jaeger.png -------------------------------------------------------------------------------- /manifest/image/jaeger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/jaeger.svg -------------------------------------------------------------------------------- /manifest/image/jwt-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/jwt-store.png -------------------------------------------------------------------------------- /manifest/image/jwt_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/jwt_cache.png -------------------------------------------------------------------------------- /manifest/image/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/mysql.png -------------------------------------------------------------------------------- /manifest/image/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/mysql.svg -------------------------------------------------------------------------------- /manifest/image/notification_content_foreign_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/notification_content_foreign_key.png -------------------------------------------------------------------------------- /manifest/image/notification_content_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/notification_content_record.png -------------------------------------------------------------------------------- /manifest/image/notification_subject_foreign_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/notification_subject_foreign_key.png -------------------------------------------------------------------------------- /manifest/image/notification_subject_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/notification_subject_record.png -------------------------------------------------------------------------------- /manifest/image/notification_subuject_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/notification_subuject_index.png -------------------------------------------------------------------------------- /manifest/image/nsq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/nsq.png -------------------------------------------------------------------------------- /manifest/image/question_content_foreign_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/question_content_foreign_key.png -------------------------------------------------------------------------------- /manifest/image/question_content_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/question_content_record.png -------------------------------------------------------------------------------- /manifest/image/question_subject_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/question_subject_index.png -------------------------------------------------------------------------------- /manifest/image/question_subject_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/question_subject_record.png -------------------------------------------------------------------------------- /manifest/image/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/redis.svg -------------------------------------------------------------------------------- /manifest/image/traefik-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/traefik-logo.png -------------------------------------------------------------------------------- /manifest/image/traefik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/traefik.png -------------------------------------------------------------------------------- /manifest/image/user_collect_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/user_collect_set.png -------------------------------------------------------------------------------- /manifest/image/user_collection_foreign_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/user_collection_foreign_key.png -------------------------------------------------------------------------------- /manifest/image/user_collection_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/user_collection_index.png -------------------------------------------------------------------------------- /manifest/image/user_collection_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/user_collection_record.png -------------------------------------------------------------------------------- /manifest/image/user_follower_member_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/user_follower_member_set.png -------------------------------------------------------------------------------- /manifest/image/user_login_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/user_login_cache.png -------------------------------------------------------------------------------- /manifest/image/user_register_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/user_register_set.png -------------------------------------------------------------------------------- /manifest/image/user_subject_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/user_subject_cache.png -------------------------------------------------------------------------------- /manifest/image/user_subject_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/user_subject_record.png -------------------------------------------------------------------------------- /manifest/image/user_subject_record_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/user_subject_record_index.png -------------------------------------------------------------------------------- /manifest/image/webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/image/webhook.png -------------------------------------------------------------------------------- /manifest/sql/answer_content.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/answer_content.sql -------------------------------------------------------------------------------- /manifest/sql/answer_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/answer_index.sql -------------------------------------------------------------------------------- /manifest/sql/comment_content.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/comment_content.sql -------------------------------------------------------------------------------- /manifest/sql/comment_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/comment_index.sql -------------------------------------------------------------------------------- /manifest/sql/comment_subject.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/comment_subject.sql -------------------------------------------------------------------------------- /manifest/sql/notification_content.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/notification_content.sql -------------------------------------------------------------------------------- /manifest/sql/notification_subject.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/notification_subject.sql -------------------------------------------------------------------------------- /manifest/sql/question_content.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/question_content.sql -------------------------------------------------------------------------------- /manifest/sql/question_subject.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/question_subject.sql -------------------------------------------------------------------------------- /manifest/sql/user_collection.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/user_collection.sql -------------------------------------------------------------------------------- /manifest/sql/user_subject.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/sql/user_subject.sql -------------------------------------------------------------------------------- /manifest/架构图.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgoware/gohu/HEAD/manifest/架构图.vsdx --------------------------------------------------------------------------------