├── .gitignore ├── .vscode └── tasks.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LEGAL.md ├── LICENSE ├── README.md ├── README_EN.md ├── SECURITY.md ├── app ├── auth │ └── auth_api │ │ ├── auth.go │ │ ├── auth_api.api │ │ ├── etc │ │ └── auth.yaml │ │ └── internal │ │ ├── config │ │ └── config.go │ │ ├── handler │ │ ├── authenticationhandler.go │ │ ├── emailloginhandler.go │ │ ├── emailpasswordloginhandler.go │ │ ├── emailregisterhandler.go │ │ ├── getemailcodehandler.go │ │ ├── getphonecodehandler.go │ │ ├── logouthandler.go │ │ ├── phoneloginhandler.go │ │ ├── phoneregisterhandler.go │ │ ├── resetpasswordhandler.go │ │ └── routes.go │ │ ├── logic │ │ ├── authenticationlogic.go │ │ ├── emailloginlogic.go │ │ ├── emailpasswordloginlogic.go │ │ ├── emailregisterlogic.go │ │ ├── getemailcodelogic.go │ │ ├── getphonecodelogic.go │ │ ├── logoutlogic.go │ │ ├── phoneloginlogic.go │ │ ├── phoneregisterlogic.go │ │ └── resetpasswordlogic.go │ │ ├── svc │ │ └── servicecontext.go │ │ └── types │ │ └── types.go ├── backend │ ├── backend_admin │ │ ├── api │ │ │ ├── auth.api │ │ │ ├── chat.api │ │ │ ├── emoji.api │ │ │ ├── feedback.api │ │ │ ├── file.api │ │ │ ├── friend.api │ │ │ ├── group.api │ │ │ ├── moment.api │ │ │ ├── system.api │ │ │ ├── track.api │ │ │ ├── update.api │ │ │ └── user.api │ │ ├── backend.go │ │ ├── backend_admin.api │ │ ├── etc │ │ │ └── backend.yaml │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── handler │ │ │ ├── auth │ │ │ │ ├── authenticationhandler.go │ │ │ │ └── loginhandler.go │ │ │ ├── chat │ │ │ │ ├── batchdeletechatmessageshandler.go │ │ │ │ ├── batchrestorechatmessageshandler.go │ │ │ │ ├── clearconversationhandler.go │ │ │ │ ├── deletechatmessagehandler.go │ │ │ │ ├── deletemessagesbytypehandler.go │ │ │ │ ├── getchatmessagedetailhandler.go │ │ │ │ ├── getchatmessagelisthandler.go │ │ │ │ └── restorechatmessagehandler.go │ │ │ ├── emoji │ │ │ │ ├── addemojitopackagehandler.go │ │ │ │ ├── createemojihandler.go │ │ │ │ ├── createemojipackagehandler.go │ │ │ │ ├── deleteemojihandler.go │ │ │ │ ├── deleteemojipackagehandler.go │ │ │ │ ├── getemojicollectlisthandler.go │ │ │ │ ├── getemojilisthandler.go │ │ │ │ ├── getemojipackageemojishandler.go │ │ │ │ ├── getemojipackagelisthandler.go │ │ │ │ ├── removeemojifrompackagehandler.go │ │ │ │ ├── updateemojihandler.go │ │ │ │ └── updateemojipackagehandler.go │ │ │ ├── feedback │ │ │ │ ├── deletefeedbackhandler.go │ │ │ │ ├── getfeedbackdetailhandler.go │ │ │ │ ├── getfeedbacklisthandler.go │ │ │ │ └── handlefeedbackhandler.go │ │ │ ├── file │ │ │ │ ├── batchdeletefilehandler.go │ │ │ │ ├── common │ │ │ │ │ └── file_utils.go │ │ │ │ ├── deletefilehandler.go │ │ │ │ ├── fileuploadlocalhandler.go │ │ │ │ ├── fileuploadqiniuhandler.go │ │ │ │ ├── getfiledetailhandler.go │ │ │ │ ├── getfilelisthandler.go │ │ │ │ ├── getqiniuuploadtokenhandler.go │ │ │ │ ├── previewhandler.go │ │ │ │ └── savefilehandler.go │ │ │ ├── friend │ │ │ │ ├── batchdeletefriendshandler.go │ │ │ │ ├── batchdeletefriendverifyhandler.go │ │ │ │ ├── deletefriendhandler.go │ │ │ │ ├── deletefriendverifyhandler.go │ │ │ │ ├── getfrienddetailhandler.go │ │ │ │ ├── getfriendlisthandler.go │ │ │ │ ├── getfriendverifydetailhandler.go │ │ │ │ ├── getfriendverifylisthandler.go │ │ │ │ └── restorefriendhandler.go │ │ │ ├── group │ │ │ │ ├── deletegrouphandler.go │ │ │ │ ├── getgroupdetailhandler.go │ │ │ │ ├── getgrouplisthandler.go │ │ │ │ ├── getgroupmemberlisthandler.go │ │ │ │ ├── mutegroupmemberhandler.go │ │ │ │ ├── removegroupmemberhandler.go │ │ │ │ ├── updategrouphandler.go │ │ │ │ └── updatememberrolehandler.go │ │ │ ├── moment │ │ │ │ ├── deletemomentcommenthandler.go │ │ │ │ ├── deletemomenthandler.go │ │ │ │ ├── getmomentcommentlisthandler.go │ │ │ │ ├── getmomentdetailhandler.go │ │ │ │ └── getmomentlisthandler.go │ │ │ ├── routes.go │ │ │ ├── system │ │ │ │ ├── createauthorityhandler.go │ │ │ │ ├── createmenuhandler.go │ │ │ │ ├── deletemenuhandler.go │ │ │ │ ├── getmenushandler.go │ │ │ │ ├── updateauthoritymenuhandler.go │ │ │ │ └── updatemenuhandler.go │ │ │ ├── track │ │ │ │ ├── createbuckethandler.go │ │ │ │ ├── deletebuckethandler.go │ │ │ │ ├── getbucketlisthandler.go │ │ │ │ ├── geteventlisthandler.go │ │ │ │ ├── querylogshandler.go │ │ │ │ └── updatebuckethandler.go │ │ │ ├── update │ │ │ │ ├── addapphandler.go │ │ │ │ ├── addarchitecturehandler.go │ │ │ │ ├── addversionhandler.go │ │ │ │ ├── getappshandler.go │ │ │ │ ├── getappversionshandler.go │ │ │ │ ├── getarchitectureshandler.go │ │ │ │ ├── getcitystrategieshandler.go │ │ │ │ ├── getversionlisthandler.go │ │ │ │ ├── updatearchitecturehandler.go │ │ │ │ └── updatecitystrategyhandler.go │ │ │ └── user │ │ │ │ ├── batchdeleteusershandler.go │ │ │ │ ├── batchupdateuserstatushandler.go │ │ │ │ ├── createuserhandler.go │ │ │ │ ├── deleteuserhandler.go │ │ │ │ ├── getuserdetailhandler.go │ │ │ │ ├── getuserlisthandler.go │ │ │ │ ├── resetuserpasswordhandler.go │ │ │ │ └── updateuserhandler.go │ │ │ ├── logic │ │ │ ├── auth │ │ │ │ ├── authenticationlogic.go │ │ │ │ └── loginlogic.go │ │ │ ├── chat │ │ │ │ ├── batchdeletechatmessageslogic.go │ │ │ │ ├── batchrestorechatmessageslogic.go │ │ │ │ ├── clearconversationlogic.go │ │ │ │ ├── deletechatmessagelogic.go │ │ │ │ ├── deletemessagesbytypelogic.go │ │ │ │ ├── getchatmessagedetaillogic.go │ │ │ │ ├── getchatmessagelistlogic.go │ │ │ │ └── restorechatmessagelogic.go │ │ │ ├── emoji │ │ │ │ ├── addemojitopackagelogic.go │ │ │ │ ├── createemojilogic.go │ │ │ │ ├── createemojipackagelogic.go │ │ │ │ ├── deleteemojilogic.go │ │ │ │ ├── deleteemojipackagelogic.go │ │ │ │ ├── getemojicollectlistlogic.go │ │ │ │ ├── getemojilistlogic.go │ │ │ │ ├── getemojipackageemojislogic.go │ │ │ │ ├── getemojipackagelistlogic.go │ │ │ │ ├── removeemojifrompackagelogic.go │ │ │ │ ├── updateemojilogic.go │ │ │ │ └── updateemojipackagelogic.go │ │ │ ├── feedback │ │ │ │ ├── deletefeedbacklogic.go │ │ │ │ ├── getfeedbackdetaillogic.go │ │ │ │ ├── getfeedbacklistlogic.go │ │ │ │ └── handlefeedbacklogic.go │ │ │ ├── file │ │ │ │ ├── batchdeletefilelogic.go │ │ │ │ ├── deletefilelogic.go │ │ │ │ ├── fileuploadlocallogic.go │ │ │ │ ├── fileuploadqiniulogic.go │ │ │ │ ├── getfiledetaillogic.go │ │ │ │ ├── getfilelistlogic.go │ │ │ │ ├── getqiniuuploadtokenlogic.go │ │ │ │ ├── previewlogic.go │ │ │ │ └── savefilelogic.go │ │ │ ├── friend │ │ │ │ ├── batchdeletefriendslogic.go │ │ │ │ ├── batchdeletefriendverifylogic.go │ │ │ │ ├── deletefriendlogic.go │ │ │ │ ├── deletefriendverifylogic.go │ │ │ │ ├── getfrienddetaillogic.go │ │ │ │ ├── getfriendlistlogic.go │ │ │ │ ├── getfriendverifydetaillogic.go │ │ │ │ ├── getfriendverifylistlogic.go │ │ │ │ └── restorefriendlogic.go │ │ │ ├── group │ │ │ │ ├── deletegrouplogic.go │ │ │ │ ├── getgroupdetaillogic.go │ │ │ │ ├── getgrouplistlogic.go │ │ │ │ ├── getgroupmemberlistlogic.go │ │ │ │ ├── mutegroupmemberlogic.go │ │ │ │ ├── removegroupmemberlogic.go │ │ │ │ ├── updategrouplogic.go │ │ │ │ └── updatememberrolelogic.go │ │ │ ├── moment │ │ │ │ ├── deletemomentcommentlogic.go │ │ │ │ ├── deletemomentlogic.go │ │ │ │ ├── getmomentcommentlistlogic.go │ │ │ │ ├── getmomentdetaillogic.go │ │ │ │ └── getmomentlistlogic.go │ │ │ ├── system │ │ │ │ ├── createauthoritylogic.go │ │ │ │ ├── createmenulogic.go │ │ │ │ ├── deletemenulogic.go │ │ │ │ ├── getmenuslogic.go │ │ │ │ ├── updateauthoritymenulogic.go │ │ │ │ └── updatemenulogic.go │ │ │ ├── track │ │ │ │ ├── createbucketlogic.go │ │ │ │ ├── deletebucketlogic.go │ │ │ │ ├── getbucketlistlogic.go │ │ │ │ ├── geteventlistlogic.go │ │ │ │ ├── querylogslogic.go │ │ │ │ └── updatebucketlogic.go │ │ │ ├── update │ │ │ │ ├── addapplogic.go │ │ │ │ ├── addarchitecturelogic.go │ │ │ │ ├── addversionlogic.go │ │ │ │ ├── getappslogic.go │ │ │ │ ├── getappversionslogic.go │ │ │ │ ├── getarchitectureslogic.go │ │ │ │ ├── getcitystrategieslogic.go │ │ │ │ ├── getversionlistlogic.go │ │ │ │ ├── updatearchitecturelogic.go │ │ │ │ └── updatecitystrategylogic.go │ │ │ └── user │ │ │ │ ├── batchdeleteuserslogic.go │ │ │ │ ├── batchupdateuserstatuslogic.go │ │ │ │ ├── createuserlogic.go │ │ │ │ ├── deleteuserlogic.go │ │ │ │ ├── getuserdetaillogic.go │ │ │ │ ├── getuserlistlogic.go │ │ │ │ ├── resetuserpasswordlogic.go │ │ │ │ └── updateuserlogic.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ └── types.go │ └── backend_models │ │ ├── admin_system_authority.go │ │ ├── admin_system_authority_menu.go │ │ ├── admin_system_authority_user.go │ │ ├── admin_system_menu.go │ │ └── admin_user.go ├── chat │ ├── chat_api │ │ ├── chat.go │ │ ├── chat_api.api │ │ ├── etc │ │ │ └── chat.yaml │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── handler │ │ │ ├── chathistoryhandler.go │ │ │ ├── chatsynchandler.go │ │ │ ├── conversationinfohandler.go │ │ │ ├── deleterecenthandler.go │ │ │ ├── editmessagehandler.go │ │ │ ├── forwardmessagehandler.go │ │ │ ├── getconversationslistbyidshandler.go │ │ │ ├── getuserconversationsettingslistbyidshandler.go │ │ │ ├── hidechathandler.go │ │ │ ├── mutechathandler.go │ │ │ ├── pinnedchathandler.go │ │ │ ├── recallmessagehandler.go │ │ │ ├── recentchatlisthandler.go │ │ │ ├── routes.go │ │ │ ├── sendmsghandler.go │ │ │ └── updatereadseqhandler.go │ │ │ ├── logic │ │ │ ├── chathistorylogic.go │ │ │ ├── chatsynclogic.go │ │ │ ├── conversationinfologic.go │ │ │ ├── deleterecentlogic.go │ │ │ ├── editmessagelogic.go │ │ │ ├── forwardmessagelogic.go │ │ │ ├── getconversationslistbyidslogic.go │ │ │ ├── getuserconversationsettingslistbyidslogic.go │ │ │ ├── hidechatlogic.go │ │ │ ├── mutechatlogic.go │ │ │ ├── pinnedchatlogic.go │ │ │ ├── recallmessagelogic.go │ │ │ ├── recentchatlistlogic.go │ │ │ ├── sendmsglogic.go │ │ │ └── updatereadseqlogic.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ └── types.go │ ├── chat_models │ │ ├── chat_conversation_setting_model.go │ │ ├── chat_datasync_model.go │ │ └── chat_model.go │ ├── chat_rpc │ │ ├── chat │ │ │ └── chat.go │ │ ├── chat_rpc.proto │ │ ├── chatrpc.exe │ │ ├── chatrpc.go │ │ ├── etc │ │ │ └── chatrpc.yaml │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── logic │ │ │ │ ├── addconversationmemberslogic.go │ │ │ │ ├── batchupdateconversationlogic.go │ │ │ │ ├── dissolveconversationlogic.go │ │ │ │ ├── getconversationslistbyidslogic.go │ │ │ │ ├── getuserconversationsettingslistbyidslogic.go │ │ │ │ ├── getuserconversationslogic.go │ │ │ │ ├── getuserconversationversionslogic.go │ │ │ │ ├── initializeconversationlogic.go │ │ │ │ ├── removeconversationmemberslogic.go │ │ │ │ ├── sendmsglogic.go │ │ │ │ ├── sendnotificationmessagelogic.go │ │ │ │ └── updateconversationlogic.go │ │ │ ├── server │ │ │ │ └── chatserver.go │ │ │ └── svc │ │ │ │ └── servicecontext.go │ │ └── types │ │ │ └── chat_rpc │ │ │ ├── chat_rpc.pb.go │ │ │ └── chat_rpc_grpc.pb.go │ └── chat_utils │ │ └── sync_utils.go ├── datasync │ ├── datasync_api │ │ ├── datasync.go │ │ ├── datasync_api.api │ │ ├── etc │ │ │ └── datasync.yaml │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── handler │ │ │ ├── getsyncallusershandler.go │ │ │ ├── getsyncchatconversationshandler.go │ │ │ ├── getsyncchatmessageshandler.go │ │ │ ├── getsyncchatuserconversationshandler.go │ │ │ ├── getsyncfriendshandler.go │ │ │ ├── getsyncfriendverifieshandler.go │ │ │ ├── getsyncgroupinfohandler.go │ │ │ ├── getsyncgroupmembershandler.go │ │ │ ├── getsyncgrouprequestshandler.go │ │ │ ├── getsyncmomentcommentshandler.go │ │ │ ├── getsyncmomentlikeshandler.go │ │ │ ├── getsyncmomentshandler.go │ │ │ └── routes.go │ │ │ ├── logic │ │ │ ├── getsyncalluserslogic.go │ │ │ ├── getsyncchatconversationslogic.go │ │ │ ├── getsyncchatmessageslogic.go │ │ │ ├── getsyncchatuserconversationslogic.go │ │ │ ├── getsyncfriendslogic.go │ │ │ ├── getsyncfriendverifieslogic.go │ │ │ ├── getsyncgroupinfologic.go │ │ │ ├── getsyncgroupmemberslogic.go │ │ │ ├── getsyncgrouprequestslogic.go │ │ │ ├── getsyncmomentcommentslogic.go │ │ │ ├── getsyncmomentlikeslogic.go │ │ │ └── getsyncmomentslogic.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ └── types.go │ └── datasync_models │ │ └── datasync_model.go ├── dictionary │ ├── dictionary_api │ │ ├── dictionary.go │ │ ├── dictionary_api.api │ │ ├── etc │ │ │ └── dictionary.yaml │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── handler │ │ │ ├── getcitieshandler.go │ │ │ └── routes.go │ │ │ ├── logic │ │ │ └── getcitieslogic.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ └── types.go │ └── dictionary_rpc │ │ ├── dictionary │ │ └── dictionary.go │ │ ├── dictionary_rpc.proto │ │ ├── dictionaryrpc.go │ │ ├── etc │ │ └── dictionaryrpc.yaml │ │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── logic │ │ │ ├── getarchitectureslogic.go │ │ │ ├── getcitieslogic.go │ │ │ └── getplatformslogic.go │ │ ├── server │ │ │ └── dictionaryserver.go │ │ └── svc │ │ │ └── servicecontext.go │ │ └── types │ │ ├── config_rpc │ │ ├── config_rpc.pb.go │ │ └── config_rpc_grpc.pb.go │ │ └── dictionary_rpc │ │ ├── dictionary_rpc.pb.go │ │ └── dictionary_rpc_grpc.pb.go ├── emoji │ ├── emoji_api │ │ ├── emoji.go │ │ ├── emoji_api.api │ │ ├── etc │ │ │ └── emoji.yaml │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── handler │ │ │ ├── addemojihandler.go │ │ │ ├── addemojitopackagehandler.go │ │ │ ├── batchaddemojitopackagehandler.go │ │ │ ├── createemojipackagehandler.go │ │ │ ├── deleteemojifrompackagehandler.go │ │ │ ├── getemojipackagedetailhandler.go │ │ │ ├── getemojipackageshandler.go │ │ │ ├── getemojislisthandler.go │ │ │ ├── getuserfavoritepackageshandler.go │ │ │ ├── routes.go │ │ │ ├── updatefavoriteemojihandler.go │ │ │ └── updatefavoriteemojipackagehandler.go │ │ │ ├── logic │ │ │ ├── addemojilogic.go │ │ │ ├── addemojitopackagelogic.go │ │ │ ├── batchaddemojitopackagelogic.go │ │ │ ├── createemojipackagelogic.go │ │ │ ├── deleteemojifrompackagelogic.go │ │ │ ├── getemojipackagedetaillogic.go │ │ │ ├── getemojipackageslogic.go │ │ │ ├── getemojislistlogic.go │ │ │ ├── getuserfavoritepackageslogic.go │ │ │ ├── updatefavoriteemojilogic.go │ │ │ └── updatefavoriteemojipackagelogic.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ └── types.go │ └── emoji_models │ │ ├── emoji_collect.go │ │ ├── emoji_models.go │ │ ├── emoji_package.go │ │ ├── emoji_package_collect.go │ │ └── emoji_package_emoji.go ├── feedback │ ├── feedback_api │ │ ├── etc │ │ │ └── feedback.yaml │ │ ├── feedback.go │ │ ├── feedback_api.api │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── handler │ │ │ ├── routes.go │ │ │ └── submitfeedbackhandler.go │ │ │ ├── logic │ │ │ └── submitfeedbacklogic.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ └── types.go │ └── feedback_models │ │ └── feedback.go ├── file │ ├── file_api │ │ ├── etc │ │ │ └── file.yaml │ │ ├── file.go │ │ ├── file_api.api │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── handler │ │ │ ├── common │ │ │ │ └── file_utils.go │ │ │ ├── fileuploadlocalhandler.go │ │ │ ├── fileuploadqiniuhandler.go │ │ │ ├── previewhandler.go │ │ │ └── routes.go │ │ │ ├── logic │ │ │ ├── fileuploadlocallogic.go │ │ │ ├── fileuploadqiniulogic.go │ │ │ └── previewlogic.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ └── types.go │ ├── file_models │ │ └── file_models.go │ └── file_rpc │ │ ├── etc │ │ └── filerpc.yaml │ │ ├── file │ │ └── file.go │ │ ├── file_rpc.proto │ │ ├── filerpc.go │ │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── logic │ │ │ ├── getfiledetaillogic.go │ │ │ └── getqiniuuploadtokenlogic.go │ │ ├── server │ │ │ └── fileserver.go │ │ └── svc │ │ │ └── servicecontext.go │ │ └── types │ │ └── file_rpc │ │ ├── file_rpc.pb.go │ │ └── file_rpc_grpc.pb.go ├── friend │ ├── friend_api │ │ ├── etc │ │ │ └── friend.yaml │ │ ├── friend.go │ │ ├── friend_api.api │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── handler │ │ │ ├── addfriendhandler.go │ │ │ ├── friendinfohandler.go │ │ │ ├── friendlisthandler.go │ │ │ ├── getfriendslistbyuuidshandler.go │ │ │ ├── getfriendverifieslistbyidshandler.go │ │ │ ├── noticeupdatehandler.go │ │ │ ├── routes.go │ │ │ ├── searchhandler.go │ │ │ ├── searchvalidinfohandler.go │ │ │ ├── uservalidstatushandler.go │ │ │ └── validlisthandler.go │ │ │ ├── logic │ │ │ ├── addfriendlogic.go │ │ │ ├── friendinfologic.go │ │ │ ├── friendlistlogic.go │ │ │ ├── getfriendslistbyuuidslogic.go │ │ │ ├── getfriendverifieslistbyidslogic.go │ │ │ ├── noticeupdatelogic.go │ │ │ ├── searchlogic.go │ │ │ ├── searchvalidinfologic.go │ │ │ ├── uservalidstatuslogic.go │ │ │ └── validlistlogic.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ └── types.go │ ├── friend_models │ │ ├── README.md │ │ ├── friend_model.go │ │ └── friend_verify_model.go │ └── friend_rpc │ │ ├── etc │ │ └── friendrpc.yaml │ │ ├── friend │ │ └── friend.go │ │ ├── friend_rpc.proto │ │ ├── friendrpc.go │ │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── logic │ │ │ ├── getfrienddetaillogic.go │ │ │ ├── getfriendidslogic.go │ │ │ ├── getfriendslistbyidslogic.go │ │ │ ├── getfriendverifieslistbyidslogic.go │ │ │ ├── getfriendverifyversionslogic.go │ │ │ └── getfriendversionslogic.go │ │ ├── server │ │ │ └── friendserver.go │ │ └── svc │ │ │ └── servicecontext.go │ │ └── types │ │ └── friend_rpc │ │ ├── friend_rpc.pb.go │ │ └── friend_rpc_grpc.pb.go ├── gateway │ ├── gateway_admin │ │ ├── core │ │ │ └── proxy.go │ │ ├── gateway.go │ │ ├── gateway.yaml │ │ ├── gateway_admin.exe │ │ └── types │ │ │ └── config.go │ └── gateway_api │ │ ├── core │ │ ├── gateway_api.go │ │ └── proxy.go │ │ ├── gateway.go │ │ ├── gateway.yaml │ │ └── types │ │ └── config.go ├── group │ ├── group_api │ │ ├── etc │ │ │ └── group.yaml │ │ ├── group.go │ │ ├── group_api.api │ │ └── internal │ │ │ ├── config │ │ │ └── config.go │ │ │ ├── handler │ │ │ ├── getgroupmembershandler.go │ │ │ ├── groupcreatehandler.go │ │ │ ├── groupdeletehandler.go │ │ │ ├── groupinfohandler.go │ │ │ ├── groupinvitehandler.go │ │ │ ├── groupjoinrequesthandlehandler.go │ │ │ ├── groupjoinrequestlisthandler.go │ │ │ ├── groupjoinrequestsynchandler.go │ │ │ ├── groupmemberaddhandler.go │ │ │ ├── groupmemberremovehandler.go │ │ │ ├── groupmembersynchandler.go │ │ │ ├── groupminehandler.go │ │ │ ├── groupsynchandler.go │ │ │ ├── joingrouphandler.go │ │ │ ├── quitgrouphandler.go │ │ │ ├── routes.go │ │ │ ├── searchgroupshandler.go │ │ │ ├── transferownerhandler.go │ │ │ ├── updategroupinfohandler.go │ │ │ └── updatememberrolehandler.go │ │ │ ├── logic │ │ │ ├── getgroupmemberslogic.go │ │ │ ├── groupcreatelogic.go │ │ │ ├── groupdeletelogic.go │ │ │ ├── groupinfologic.go │ │ │ ├── groupinvitelogic.go │ │ │ ├── groupjoinrequesthandlelogic.go │ │ │ ├── groupjoinrequestlistlogic.go │ │ │ ├── groupjoinrequestsynclogic.go │ │ │ ├── groupmemberaddlogic.go │ │ │ ├── groupmemberremovelogic.go │ │ │ ├── groupmembersynclogic.go │ │ │ ├── groupminelogic.go │ │ │ ├── groupsynclogic.go │ │ │ ├── joingrouplogic.go │ │ │ ├── quitgrouplogic.go │ │ │ ├── searchgroupslogic.go │ │ │ ├── transferownerlogic.go │ │ │ ├── updategroupinfologic.go │ │ │ └── updatememberrolelogic.go │ │ │ ├── svc │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ └── types.go │ ├── group_models │ │ ├── README.md │ │ ├── group_join_request_model.go │ │ ├── group_member_change_log_model.go │ │ ├── group_member_model.go │ │ └── group_model.go │ └── group_rpc │ │ ├── etc │ │ └── grouprpc.yaml │ │ ├── group │ │ └── group.go │ │ ├── group_rpc.proto │ │ ├── grouprpc.go │ │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── logic │ │ │ ├── getgroupjoinrequestslistbyidslogic.go │ │ │ ├── getgroupmemberslistbyidslogic.go │ │ │ ├── getgroupmemberslogic.go │ │ │ ├── getgroupslistbyidslogic.go │ │ │ ├── getusergroupidslogic.go │ │ │ ├── getusergroupmemberslogic.go │ │ │ └── getusergrouprequestversionslogic.go │ │ ├── server │ │ │ └── groupserver.go │ │ └── svc │ │ │ └── servicecontext.go │ │ └── types │ │ └── group_rpc │ │ ├── group_rpc.pb.go │ │ └── group_rpc_grpc.pb.go ├── moment │ ├── moment_api │ │ ├── etc │ │ │ └── moment.yaml │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── handler │ │ │ │ ├── createmomenthandler.go │ │ │ │ ├── deletemomenthandler.go │ │ │ │ ├── getcommentsbatchhandler.go │ │ │ │ ├── getlikesbatchhandler.go │ │ │ │ ├── getmomentinfohandler.go │ │ │ │ ├── getmomentsbatchhandler.go │ │ │ │ ├── getmomentslisthandler.go │ │ │ │ ├── likemomenthandler.go │ │ │ │ └── routes.go │ │ │ ├── logic │ │ │ │ ├── createmomentlogic.go │ │ │ │ ├── deletemomentlogic.go │ │ │ │ ├── getcommentsbatchlogic.go │ │ │ │ ├── getlikesbatchlogic.go │ │ │ │ ├── getmomentinfologic.go │ │ │ │ ├── getmomentsbatchlogic.go │ │ │ │ ├── getmomentslistlogic.go │ │ │ │ └── likemomentlogic.go │ │ │ ├── svc │ │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ │ └── types.go │ │ ├── moment.go │ │ └── moment_api.api │ ├── moment_models │ │ ├── moment.go │ │ ├── moment_comment.go │ │ └── moment_like.go │ └── moment_rpc │ │ ├── etc │ │ └── momentrpc.yaml │ │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── logic │ │ │ ├── getmomentcommentversionslogic.go │ │ │ ├── getmomentlikeversionslogic.go │ │ │ └── getmomentversionslogic.go │ │ ├── server │ │ │ └── momentserver.go │ │ └── svc │ │ │ └── servicecontext.go │ │ ├── moment │ │ └── moment.go │ │ ├── moment_rpc.proto │ │ ├── momentrpc.go │ │ └── types │ │ └── moment_rpc │ │ ├── moment_rpc.pb.go │ │ └── moment_rpc_grpc.pb.go ├── track │ ├── track_api │ │ ├── etc │ │ │ └── track.yaml │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── handler │ │ │ │ ├── logeventshandler.go │ │ │ │ ├── reporteventshandler.go │ │ │ │ └── routes.go │ │ │ ├── logic │ │ │ │ ├── logeventslogic.go │ │ │ │ └── reporteventslogic.go │ │ │ ├── svc │ │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ │ └── types.go │ │ ├── track.go │ │ └── track_api.api │ └── track_models │ │ ├── track_bucket.go │ │ ├── track_event.go │ │ └── track_logger.go ├── update │ ├── update_api │ │ ├── etc │ │ │ └── update.yaml │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── handler │ │ │ │ ├── getlatestversionhandler.go │ │ │ │ ├── reportversionhandler.go │ │ │ │ └── routes.go │ │ │ ├── logic │ │ │ │ ├── getlatestversionlogic.go │ │ │ │ └── reportversionlogic.go │ │ │ ├── svc │ │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ │ └── types.go │ │ ├── update.go │ │ └── update_api.api │ └── update_models │ │ ├── update_architecture.go │ │ ├── update_report.go │ │ ├── update_strategy.go │ │ ├── update_version.go │ │ └── upload_app.go ├── user │ ├── user_api │ │ ├── etc │ │ │ └── user.yaml │ │ ├── internal │ │ │ ├── config │ │ │ │ └── config.go │ │ │ ├── handler │ │ │ │ ├── getdeviceshandler.go │ │ │ │ ├── routes.go │ │ │ │ ├── updateemailhandler.go │ │ │ │ ├── updateinfohandler.go │ │ │ │ ├── updatepasswordhandler.go │ │ │ │ ├── userinfohandler.go │ │ │ │ └── usersynchandler.go │ │ │ ├── logic │ │ │ │ ├── getdeviceslogic.go │ │ │ │ ├── updateemaillogic.go │ │ │ │ ├── updateinfologic.go │ │ │ │ ├── updatepasswordlogic.go │ │ │ │ ├── userinfologic.go │ │ │ │ └── usersynclogic.go │ │ │ ├── svc │ │ │ │ └── servicecontext.go │ │ │ └── types │ │ │ │ └── types.go │ │ ├── user.go │ │ └── user_api.api │ ├── user_models │ │ ├── README.md │ │ ├── user_change_log_model.go │ │ ├── user_device_model.go │ │ └── user_module.go │ └── user_rpc │ │ ├── etc │ │ └── userrpc.yaml │ │ ├── internal │ │ ├── config │ │ │ └── config.go │ │ ├── logic │ │ │ ├── isfriendlogic.go │ │ │ ├── searchuserlogic.go │ │ │ ├── usercreatelogic.go │ │ │ ├── userinfologic.go │ │ │ ├── userlistinfologic.go │ │ │ └── userversionslogic.go │ │ ├── server │ │ │ └── userserver.go │ │ └── svc │ │ │ └── servicecontext.go │ │ ├── types │ │ └── user_rpc │ │ │ ├── user_rpc.pb.go │ │ │ └── user_rpc_grpc.pb.go │ │ ├── user │ │ └── user.go │ │ ├── user_rpc.proto │ │ └── userrpc.go └── ws │ └── ws_api │ ├── etc │ └── ws.yaml │ ├── internal │ ├── config │ │ └── config.go │ ├── handler │ │ ├── chatwebsockethandler.go │ │ ├── proxysendmsghandler.go │ │ └── routes.go │ ├── logic │ │ ├── chatwebsocketlogic.go │ │ ├── proxysendmsglogic.go │ │ └── websocket │ │ │ ├── chat_message │ │ │ ├── common.go │ │ │ ├── enter.go │ │ │ ├── group_message_send.go │ │ │ └── private_message_send.go │ │ │ ├── enter.go │ │ │ ├── heartbeat │ │ │ └── manager.go │ │ │ ├── proxy_message │ │ │ ├── enter.go │ │ │ └── proxy_message_send.go │ │ │ ├── types │ │ │ └── chat.go │ │ │ ├── utils │ │ │ └── websocket_utils.go │ │ │ └── webrtc_message │ │ │ └── enter.go │ ├── redis_ws │ │ ├── manager.go │ │ └── utils.go │ ├── svc │ │ └── servicecontext.go │ └── types │ │ └── types.go │ ├── response │ └── response.go │ ├── types │ ├── msg.go │ ├── proxy.go │ └── ws.go │ ├── ws.go │ └── ws_api.api ├── common ├── ajax │ ├── enter.go │ └── ip_location.go ├── etcd │ └── etcd.go ├── list_query │ └── enter.go ├── middleware │ ├── grpc │ │ └── requestlog.go │ ├── http │ │ └── requestlog.go │ ├── middleware.go │ ├── requestlog.go │ ├── userAgent.go │ └── utils │ │ └── log.go ├── models │ ├── ctype │ │ ├── msg.go │ │ ├── user_info.go │ │ └── verification_question.go │ └── enter.go ├── response │ └── enter.go ├── validator │ └── validator.go ├── wsEnum │ ├── wsCommandConst │ │ └── wsCommandConst.go │ └── wsTypeConst │ │ └── wsTypeConst.go └── zrpc_interceptor │ └── clientInfoInterceptor.go ├── core ├── InitSFU.go ├── etcd.go ├── gorm.go ├── redis.go └── version │ └── version.go ├── database ├── InitFileData.go ├── InitUpdateData.go └── database.go ├── deploy ├── auth_admin │ ├── Dockerfile │ ├── auth.yaml │ └── docker-compose.yaml ├── auth_api │ ├── Dockerfile │ ├── auth.yaml │ └── docker-compose.yaml ├── chat_admin │ ├── Dockerfile │ ├── chat.yaml │ └── docker-compose.yaml ├── chat_api │ ├── Dockerfile │ ├── chat.yaml │ └── docker-compose.yaml ├── chat_rpc │ ├── Dockerfile │ ├── chatrpc.yaml │ └── docker-compose.yaml ├── config.sh ├── config.txt ├── dictionary_api │ ├── Dockerfile │ ├── dictionary.yaml │ └── docker-compose.yaml ├── dictionary_rpc │ ├── Dockerfile │ ├── dictionaryrpc.yaml │ └── docker-compose.yaml ├── emoji_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── emoji.yaml ├── emoji_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── emoji.yaml ├── feedback_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── feedback.yaml ├── feedback_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── feedback.yaml ├── file_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── file.yaml ├── file_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── file.yaml ├── file_rpc │ ├── Dockerfile │ ├── docker-compose.yaml │ └── filerpc.yaml ├── friend_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── friend.yaml ├── friend_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── friend.yaml ├── friend_rpc │ ├── Dockerfile │ ├── docker-compose.yaml │ └── friendrpc.yaml ├── gateway_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── gateway.yaml ├── gateway_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── gateway.yaml ├── group_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── group.yaml ├── group_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── group.yaml ├── group_rpc │ ├── Dockerfile │ ├── docker-compose.yaml │ └── grouprpc.yaml ├── moment_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── moment.yaml ├── moment_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── moment.yaml ├── start.sh ├── stop.sh ├── system_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── system.yaml ├── track_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── track.yaml ├── track_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── track.yaml ├── update.sh ├── update_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── update.yaml ├── update_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── update.yaml ├── user_admin │ ├── Dockerfile │ ├── docker-compose.yaml │ └── user.yaml ├── user_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── user.yaml ├── user_rpc │ ├── Dockerfile │ ├── docker-compose.yaml │ └── userrpc.yaml └── ws_api │ ├── Dockerfile │ ├── docker-compose.yaml │ └── ws.yaml ├── go.mod ├── go.sum ├── group_api.exe ├── main.go ├── static ├── image │ ├── group.png │ └── user.png ├── mobile │ ├── README.md │ ├── about.jpg │ ├── add-members.jpg │ ├── chat-details.jpg │ ├── create-group.jpg │ ├── edit-remark.jpg │ ├── feedback.jpg │ ├── find-password.jpg │ ├── friend-info.jpg │ ├── friend.jpg │ ├── group-chat.jpg │ ├── group-details.jpg │ ├── group-list.jpg │ ├── login.jpg │ ├── message.jpg │ ├── mine.jpg │ ├── moments.jpg │ ├── new-friends.jpg │ ├── private-chat.jpg │ ├── profile-edit.jpg │ ├── qcode.jpg │ ├── register.jpg │ ├── send-emoji.jpg │ ├── send-moments.jpg │ ├── send-text.jpg │ ├── settings.jpg │ ├── start-group.jpg │ ├── statement.jpg │ └── update.jpg └── sponsor │ ├── wechat.jpg │ └── zhifubao.jpg ├── template ├── api │ ├── config.tpl │ ├── context.tpl │ ├── etc.tpl │ ├── handler.tpl │ ├── logic.tpl │ ├── main.tpl │ ├── middleware.tpl │ ├── route-addition.tpl │ ├── routes.tpl │ ├── template.tpl │ └── types.tpl ├── docker │ └── docker.tpl ├── gateway │ ├── etc.tpl │ └── main.tpl ├── kube │ ├── deployment.tpl │ └── job.tpl ├── model │ ├── delete.tpl │ ├── err.tpl │ ├── field.tpl │ ├── find-one-by-field-extra-method.tpl │ ├── find-one-by-field.tpl │ ├── find-one.tpl │ ├── import-no-cache.tpl │ ├── import.tpl │ ├── insert.tpl │ ├── interface-delete.tpl │ ├── interface-find-one-by-field.tpl │ ├── interface-find-one.tpl │ ├── interface-insert.tpl │ ├── interface-update.tpl │ ├── model-gen.tpl │ ├── model-new.tpl │ ├── model.tpl │ ├── table-name.tpl │ ├── tag.tpl │ ├── types.tpl │ ├── update.tpl │ └── var.tpl ├── mongo │ ├── err.tpl │ ├── model.tpl │ ├── model_custom.tpl │ └── model_types.tpl ├── newapi │ └── newtemplate.tpl └── rpc │ ├── call.tpl │ ├── config.tpl │ ├── etc.tpl │ ├── logic-func.tpl │ ├── logic.tpl │ ├── main.tpl │ ├── server-func.tpl │ ├── server.tpl │ ├── svc.tpl │ └── template.tpl ├── update.md └── utils ├── array.go ├── conversation ├── cities.go └── enter.go ├── device └── device.go ├── email └── email.go ├── jwts └── enter.go ├── maps └── ref_to_map.go ├── md5 └── enter.go ├── pwd └── enter.go ├── rand └── rand.go └── uuid └── uuid.go /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package.lock.json 3 | static/* -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LEGAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/LEGAL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/README_EN.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/auth/auth_api/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/auth.go -------------------------------------------------------------------------------- /app/auth/auth_api/auth_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/auth_api.api -------------------------------------------------------------------------------- /app/auth/auth_api/etc/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/etc/auth.yaml -------------------------------------------------------------------------------- /app/auth/auth_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/config/config.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/authenticationhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/authenticationhandler.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/emailloginhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/emailloginhandler.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/emailpasswordloginhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/emailpasswordloginhandler.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/emailregisterhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/emailregisterhandler.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/getemailcodehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/getemailcodehandler.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/getphonecodehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/getphonecodehandler.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/logouthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/logouthandler.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/phoneloginhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/phoneloginhandler.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/phoneregisterhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/phoneregisterhandler.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/resetpasswordhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/resetpasswordhandler.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/logic/authenticationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/logic/authenticationlogic.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/logic/emailloginlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/logic/emailloginlogic.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/logic/emailpasswordloginlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/logic/emailpasswordloginlogic.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/logic/emailregisterlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/logic/emailregisterlogic.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/logic/getemailcodelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/logic/getemailcodelogic.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/logic/getphonecodelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/logic/getphonecodelogic.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/logic/logoutlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/logic/logoutlogic.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/logic/phoneloginlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/logic/phoneloginlogic.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/logic/phoneregisterlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/logic/phoneregisterlogic.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/logic/resetpasswordlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/logic/resetpasswordlogic.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/auth/auth_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/auth/auth_api/internal/types/types.go -------------------------------------------------------------------------------- /app/backend/backend_admin/api/auth.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/auth.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/chat.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/chat.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/emoji.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/emoji.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/feedback.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/feedback.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/file.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/file.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/friend.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/friend.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/group.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/group.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/moment.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/moment.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/system.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/system.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/track.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/track.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/update.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/update.api -------------------------------------------------------------------------------- /app/backend/backend_admin/api/user.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/api/user.api -------------------------------------------------------------------------------- /app/backend/backend_admin/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/backend.go -------------------------------------------------------------------------------- /app/backend/backend_admin/backend_admin.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/backend_admin.api -------------------------------------------------------------------------------- /app/backend/backend_admin/etc/backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/etc/backend.yaml -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/config/config.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/auth/loginhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/auth/loginhandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/emoji/createemojihandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/emoji/createemojihandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/emoji/deleteemojihandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/emoji/deleteemojihandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/emoji/updateemojihandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/emoji/updateemojihandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/file/common/file_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/file/common/file_utils.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/file/deletefilehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/file/deletefilehandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/file/getfilelisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/file/getfilelisthandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/file/previewhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/file/previewhandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/file/savefilehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/file/savefilehandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/group/deletegrouphandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/group/deletegrouphandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/group/updategrouphandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/group/updategrouphandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/routes.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/system/createmenuhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/system/createmenuhandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/system/deletemenuhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/system/deletemenuhandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/system/getmenushandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/system/getmenushandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/system/updatemenuhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/system/updatemenuhandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/track/querylogshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/track/querylogshandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/update/addapphandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/update/addapphandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/update/addversionhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/update/addversionhandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/update/getappshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/update/getappshandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/user/createuserhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/user/createuserhandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/user/deleteuserhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/user/deleteuserhandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/user/getuserlisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/user/getuserlisthandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/handler/user/updateuserhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/handler/user/updateuserhandler.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/auth/authenticationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/auth/authenticationlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/auth/loginlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/auth/loginlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/emoji/createemojilogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/emoji/createemojilogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/emoji/deleteemojilogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/emoji/deleteemojilogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/emoji/getemojilistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/emoji/getemojilistlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/emoji/updateemojilogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/emoji/updateemojilogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/file/batchdeletefilelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/file/batchdeletefilelogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/file/deletefilelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/file/deletefilelogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/file/fileuploadlocallogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/file/fileuploadlocallogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/file/fileuploadqiniulogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/file/fileuploadqiniulogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/file/getfiledetaillogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/file/getfiledetaillogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/file/getfilelistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/file/getfilelistlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/file/previewlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/file/previewlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/file/savefilelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/file/savefilelogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/friend/deletefriendlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/friend/deletefriendlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/friend/getfriendlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/friend/getfriendlistlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/friend/restorefriendlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/friend/restorefriendlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/group/deletegrouplogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/group/deletegrouplogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/group/getgroupdetaillogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/group/getgroupdetaillogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/group/getgrouplistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/group/getgrouplistlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/group/mutegroupmemberlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/group/mutegroupmemberlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/group/updategrouplogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/group/updategrouplogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/moment/deletemomentlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/moment/deletemomentlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/moment/getmomentlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/moment/getmomentlistlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/system/createmenulogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/system/createmenulogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/system/deletemenulogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/system/deletemenulogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/system/getmenuslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/system/getmenuslogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/system/updatemenulogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/system/updatemenulogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/track/createbucketlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/track/createbucketlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/track/deletebucketlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/track/deletebucketlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/track/getbucketlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/track/getbucketlistlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/track/geteventlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/track/geteventlistlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/track/querylogslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/track/querylogslogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/track/updatebucketlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/track/updatebucketlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/update/addapplogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/update/addapplogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/update/addversionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/update/addversionlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/update/getappslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/update/getappslogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/update/getappversionslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/update/getappversionslogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/update/getversionlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/update/getversionlistlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/user/batchdeleteuserslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/user/batchdeleteuserslogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/user/createuserlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/user/createuserlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/user/deleteuserlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/user/deleteuserlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/user/getuserdetaillogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/user/getuserdetaillogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/user/getuserlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/user/getuserlistlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/logic/user/updateuserlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/logic/user/updateuserlogic.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/backend/backend_admin/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_admin/internal/types/types.go -------------------------------------------------------------------------------- /app/backend/backend_models/admin_system_authority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_models/admin_system_authority.go -------------------------------------------------------------------------------- /app/backend/backend_models/admin_system_authority_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_models/admin_system_authority_menu.go -------------------------------------------------------------------------------- /app/backend/backend_models/admin_system_authority_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_models/admin_system_authority_user.go -------------------------------------------------------------------------------- /app/backend/backend_models/admin_system_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_models/admin_system_menu.go -------------------------------------------------------------------------------- /app/backend/backend_models/admin_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/backend/backend_models/admin_user.go -------------------------------------------------------------------------------- /app/chat/chat_api/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/chat.go -------------------------------------------------------------------------------- /app/chat/chat_api/chat_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/chat_api.api -------------------------------------------------------------------------------- /app/chat/chat_api/etc/chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/etc/chat.yaml -------------------------------------------------------------------------------- /app/chat/chat_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/config/config.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/chathistoryhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/chathistoryhandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/chatsynchandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/chatsynchandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/conversationinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/conversationinfohandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/deleterecenthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/deleterecenthandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/editmessagehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/editmessagehandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/forwardmessagehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/forwardmessagehandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/getconversationslistbyidshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/getconversationslistbyidshandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/hidechathandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/hidechathandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/mutechathandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/mutechathandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/pinnedchathandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/pinnedchathandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/recallmessagehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/recallmessagehandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/recentchatlisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/recentchatlisthandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/sendmsghandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/sendmsghandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/handler/updatereadseqhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/handler/updatereadseqhandler.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/chathistorylogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/chathistorylogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/chatsynclogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/chatsynclogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/conversationinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/conversationinfologic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/deleterecentlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/deleterecentlogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/editmessagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/editmessagelogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/forwardmessagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/forwardmessagelogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/getconversationslistbyidslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/getconversationslistbyidslogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/hidechatlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/hidechatlogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/mutechatlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/mutechatlogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/pinnedchatlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/pinnedchatlogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/recallmessagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/recallmessagelogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/recentchatlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/recentchatlistlogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/sendmsglogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/sendmsglogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/logic/updatereadseqlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/logic/updatereadseqlogic.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/chat/chat_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_api/internal/types/types.go -------------------------------------------------------------------------------- /app/chat/chat_models/chat_conversation_setting_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_models/chat_conversation_setting_model.go -------------------------------------------------------------------------------- /app/chat/chat_models/chat_datasync_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_models/chat_datasync_model.go -------------------------------------------------------------------------------- /app/chat/chat_models/chat_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_models/chat_model.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/chat/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/chat/chat.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/chat_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/chat_rpc.proto -------------------------------------------------------------------------------- /app/chat/chat_rpc/chatrpc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/chatrpc.exe -------------------------------------------------------------------------------- /app/chat/chat_rpc/chatrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/chatrpc.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/etc/chatrpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/etc/chatrpc.yaml -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/config/config.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/addconversationmemberslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/addconversationmemberslogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/batchupdateconversationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/batchupdateconversationlogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/dissolveconversationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/dissolveconversationlogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/getconversationslistbyidslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/getconversationslistbyidslogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/getuserconversationslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/getuserconversationslogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/getuserconversationversionslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/getuserconversationversionslogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/initializeconversationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/initializeconversationlogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/removeconversationmemberslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/removeconversationmemberslogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/sendmsglogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/sendmsglogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/sendnotificationmessagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/sendnotificationmessagelogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/logic/updateconversationlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/logic/updateconversationlogic.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/server/chatserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/server/chatserver.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/types/chat_rpc/chat_rpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/types/chat_rpc/chat_rpc.pb.go -------------------------------------------------------------------------------- /app/chat/chat_rpc/types/chat_rpc/chat_rpc_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_rpc/types/chat_rpc/chat_rpc_grpc.pb.go -------------------------------------------------------------------------------- /app/chat/chat_utils/sync_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/chat/chat_utils/sync_utils.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/datasync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/datasync.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/datasync_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/datasync_api.api -------------------------------------------------------------------------------- /app/datasync/datasync_api/etc/datasync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/etc/datasync.yaml -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/config/config.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/handler/getsyncallusershandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/handler/getsyncallusershandler.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/handler/getsyncfriendshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/handler/getsyncfriendshandler.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/handler/getsyncgroupinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/handler/getsyncgroupinfohandler.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/handler/getsyncmomentshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/handler/getsyncmomentshandler.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/logic/getsyncalluserslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/logic/getsyncalluserslogic.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/logic/getsyncchatmessageslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/logic/getsyncchatmessageslogic.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/logic/getsyncfriendslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/logic/getsyncfriendslogic.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/logic/getsyncfriendverifieslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/logic/getsyncfriendverifieslogic.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/logic/getsyncgroupinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/logic/getsyncgroupinfologic.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/logic/getsyncgroupmemberslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/logic/getsyncgroupmemberslogic.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/logic/getsyncgrouprequestslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/logic/getsyncgrouprequestslogic.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/logic/getsyncmomentcommentslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/logic/getsyncmomentcommentslogic.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/logic/getsyncmomentlikeslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/logic/getsyncmomentlikeslogic.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/logic/getsyncmomentslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/logic/getsyncmomentslogic.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/datasync/datasync_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_api/internal/types/types.go -------------------------------------------------------------------------------- /app/datasync/datasync_models/datasync_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/datasync/datasync_models/datasync_model.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_api/dictionary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_api/dictionary.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_api/dictionary_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_api/dictionary_api.api -------------------------------------------------------------------------------- /app/dictionary/dictionary_api/etc/dictionary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_api/etc/dictionary.yaml -------------------------------------------------------------------------------- /app/dictionary/dictionary_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_api/internal/config/config.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_api/internal/handler/getcitieshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_api/internal/handler/getcitieshandler.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_api/internal/logic/getcitieslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_api/internal/logic/getcitieslogic.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_api/internal/types/types.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/dictionary/dictionary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/dictionary/dictionary.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/dictionary_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/dictionary_rpc.proto -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/dictionaryrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/dictionaryrpc.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/etc/dictionaryrpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/etc/dictionaryrpc.yaml -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/internal/config/config.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/internal/logic/getarchitectureslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/internal/logic/getarchitectureslogic.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/internal/logic/getcitieslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/internal/logic/getcitieslogic.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/internal/logic/getplatformslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/internal/logic/getplatformslogic.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/internal/server/dictionaryserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/internal/server/dictionaryserver.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/types/config_rpc/config_rpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/types/config_rpc/config_rpc.pb.go -------------------------------------------------------------------------------- /app/dictionary/dictionary_rpc/types/config_rpc/config_rpc_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/dictionary/dictionary_rpc/types/config_rpc/config_rpc_grpc.pb.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/emoji.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/emoji.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/emoji_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/emoji_api.api -------------------------------------------------------------------------------- /app/emoji/emoji_api/etc/emoji.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/etc/emoji.yaml -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/config/config.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/addemojihandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/addemojihandler.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/addemojitopackagehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/addemojitopackagehandler.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/batchaddemojitopackagehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/batchaddemojitopackagehandler.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/createemojipackagehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/createemojipackagehandler.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/deleteemojifrompackagehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/deleteemojifrompackagehandler.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/getemojipackagedetailhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/getemojipackagedetailhandler.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/getemojipackageshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/getemojipackageshandler.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/getemojislisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/getemojislisthandler.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/getuserfavoritepackageshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/getuserfavoritepackageshandler.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/handler/updatefavoriteemojihandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/handler/updatefavoriteemojihandler.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/addemojilogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/addemojilogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/addemojitopackagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/addemojitopackagelogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/batchaddemojitopackagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/batchaddemojitopackagelogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/createemojipackagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/createemojipackagelogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/deleteemojifrompackagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/deleteemojifrompackagelogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/getemojipackagedetaillogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/getemojipackagedetaillogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/getemojipackageslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/getemojipackageslogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/getemojislistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/getemojislistlogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/getuserfavoritepackageslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/getuserfavoritepackageslogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/updatefavoriteemojilogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/updatefavoriteemojilogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/logic/updatefavoriteemojipackagelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/logic/updatefavoriteemojipackagelogic.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/emoji/emoji_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_api/internal/types/types.go -------------------------------------------------------------------------------- /app/emoji/emoji_models/emoji_collect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_models/emoji_collect.go -------------------------------------------------------------------------------- /app/emoji/emoji_models/emoji_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_models/emoji_models.go -------------------------------------------------------------------------------- /app/emoji/emoji_models/emoji_package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_models/emoji_package.go -------------------------------------------------------------------------------- /app/emoji/emoji_models/emoji_package_collect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_models/emoji_package_collect.go -------------------------------------------------------------------------------- /app/emoji/emoji_models/emoji_package_emoji.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/emoji/emoji_models/emoji_package_emoji.go -------------------------------------------------------------------------------- /app/feedback/feedback_api/etc/feedback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/feedback/feedback_api/etc/feedback.yaml -------------------------------------------------------------------------------- /app/feedback/feedback_api/feedback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/feedback/feedback_api/feedback.go -------------------------------------------------------------------------------- /app/feedback/feedback_api/feedback_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/feedback/feedback_api/feedback_api.api -------------------------------------------------------------------------------- /app/feedback/feedback_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/feedback/feedback_api/internal/config/config.go -------------------------------------------------------------------------------- /app/feedback/feedback_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/feedback/feedback_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/feedback/feedback_api/internal/handler/submitfeedbackhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/feedback/feedback_api/internal/handler/submitfeedbackhandler.go -------------------------------------------------------------------------------- /app/feedback/feedback_api/internal/logic/submitfeedbacklogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/feedback/feedback_api/internal/logic/submitfeedbacklogic.go -------------------------------------------------------------------------------- /app/feedback/feedback_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/feedback/feedback_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/feedback/feedback_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/feedback/feedback_api/internal/types/types.go -------------------------------------------------------------------------------- /app/feedback/feedback_models/feedback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/feedback/feedback_models/feedback.go -------------------------------------------------------------------------------- /app/file/file_api/etc/file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/etc/file.yaml -------------------------------------------------------------------------------- /app/file/file_api/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/file.go -------------------------------------------------------------------------------- /app/file/file_api/file_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/file_api.api -------------------------------------------------------------------------------- /app/file/file_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/config/config.go -------------------------------------------------------------------------------- /app/file/file_api/internal/handler/common/file_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/handler/common/file_utils.go -------------------------------------------------------------------------------- /app/file/file_api/internal/handler/fileuploadlocalhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/handler/fileuploadlocalhandler.go -------------------------------------------------------------------------------- /app/file/file_api/internal/handler/fileuploadqiniuhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/handler/fileuploadqiniuhandler.go -------------------------------------------------------------------------------- /app/file/file_api/internal/handler/previewhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/handler/previewhandler.go -------------------------------------------------------------------------------- /app/file/file_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/file/file_api/internal/logic/fileuploadlocallogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/logic/fileuploadlocallogic.go -------------------------------------------------------------------------------- /app/file/file_api/internal/logic/fileuploadqiniulogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/logic/fileuploadqiniulogic.go -------------------------------------------------------------------------------- /app/file/file_api/internal/logic/previewlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/logic/previewlogic.go -------------------------------------------------------------------------------- /app/file/file_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/file/file_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_api/internal/types/types.go -------------------------------------------------------------------------------- /app/file/file_models/file_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_models/file_models.go -------------------------------------------------------------------------------- /app/file/file_rpc/etc/filerpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/etc/filerpc.yaml -------------------------------------------------------------------------------- /app/file/file_rpc/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/file/file.go -------------------------------------------------------------------------------- /app/file/file_rpc/file_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/file_rpc.proto -------------------------------------------------------------------------------- /app/file/file_rpc/filerpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/filerpc.go -------------------------------------------------------------------------------- /app/file/file_rpc/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/internal/config/config.go -------------------------------------------------------------------------------- /app/file/file_rpc/internal/logic/getfiledetaillogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/internal/logic/getfiledetaillogic.go -------------------------------------------------------------------------------- /app/file/file_rpc/internal/logic/getqiniuuploadtokenlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/internal/logic/getqiniuuploadtokenlogic.go -------------------------------------------------------------------------------- /app/file/file_rpc/internal/server/fileserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/internal/server/fileserver.go -------------------------------------------------------------------------------- /app/file/file_rpc/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/file/file_rpc/types/file_rpc/file_rpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/types/file_rpc/file_rpc.pb.go -------------------------------------------------------------------------------- /app/file/file_rpc/types/file_rpc/file_rpc_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/file/file_rpc/types/file_rpc/file_rpc_grpc.pb.go -------------------------------------------------------------------------------- /app/friend/friend_api/etc/friend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/etc/friend.yaml -------------------------------------------------------------------------------- /app/friend/friend_api/friend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/friend.go -------------------------------------------------------------------------------- /app/friend/friend_api/friend_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/friend_api.api -------------------------------------------------------------------------------- /app/friend/friend_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/config/config.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/handler/addfriendhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/handler/addfriendhandler.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/handler/friendinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/handler/friendinfohandler.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/handler/friendlisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/handler/friendlisthandler.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/handler/getfriendslistbyuuidshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/handler/getfriendslistbyuuidshandler.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/handler/noticeupdatehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/handler/noticeupdatehandler.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/handler/searchhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/handler/searchhandler.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/handler/searchvalidinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/handler/searchvalidinfohandler.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/handler/uservalidstatushandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/handler/uservalidstatushandler.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/handler/validlisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/handler/validlisthandler.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/logic/addfriendlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/logic/addfriendlogic.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/logic/friendinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/logic/friendinfologic.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/logic/friendlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/logic/friendlistlogic.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/logic/getfriendslistbyuuidslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/logic/getfriendslistbyuuidslogic.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/logic/noticeupdatelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/logic/noticeupdatelogic.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/logic/searchlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/logic/searchlogic.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/logic/searchvalidinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/logic/searchvalidinfologic.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/logic/uservalidstatuslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/logic/uservalidstatuslogic.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/logic/validlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/logic/validlistlogic.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/friend/friend_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_api/internal/types/types.go -------------------------------------------------------------------------------- /app/friend/friend_models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_models/README.md -------------------------------------------------------------------------------- /app/friend/friend_models/friend_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_models/friend_model.go -------------------------------------------------------------------------------- /app/friend/friend_models/friend_verify_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_models/friend_verify_model.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/etc/friendrpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/etc/friendrpc.yaml -------------------------------------------------------------------------------- /app/friend/friend_rpc/friend/friend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/friend/friend.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/friend_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/friend_rpc.proto -------------------------------------------------------------------------------- /app/friend/friend_rpc/friendrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/friendrpc.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/internal/config/config.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/internal/logic/getfrienddetaillogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/internal/logic/getfrienddetaillogic.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/internal/logic/getfriendidslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/internal/logic/getfriendidslogic.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/internal/logic/getfriendslistbyidslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/internal/logic/getfriendslistbyidslogic.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/internal/logic/getfriendverifyversionslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/internal/logic/getfriendverifyversionslogic.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/internal/logic/getfriendversionslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/internal/logic/getfriendversionslogic.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/internal/server/friendserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/internal/server/friendserver.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/types/friend_rpc/friend_rpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/types/friend_rpc/friend_rpc.pb.go -------------------------------------------------------------------------------- /app/friend/friend_rpc/types/friend_rpc/friend_rpc_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/friend/friend_rpc/types/friend_rpc/friend_rpc_grpc.pb.go -------------------------------------------------------------------------------- /app/gateway/gateway_admin/core/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/gateway/gateway_admin/core/proxy.go -------------------------------------------------------------------------------- /app/gateway/gateway_admin/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/gateway/gateway_admin/gateway.go -------------------------------------------------------------------------------- /app/gateway/gateway_admin/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/gateway/gateway_admin/gateway.yaml -------------------------------------------------------------------------------- /app/gateway/gateway_admin/gateway_admin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/gateway/gateway_admin/gateway_admin.exe -------------------------------------------------------------------------------- /app/gateway/gateway_admin/types/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/gateway/gateway_admin/types/config.go -------------------------------------------------------------------------------- /app/gateway/gateway_api/core/gateway_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/gateway/gateway_api/core/gateway_api.go -------------------------------------------------------------------------------- /app/gateway/gateway_api/core/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/gateway/gateway_api/core/proxy.go -------------------------------------------------------------------------------- /app/gateway/gateway_api/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/gateway/gateway_api/gateway.go -------------------------------------------------------------------------------- /app/gateway/gateway_api/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/gateway/gateway_api/gateway.yaml -------------------------------------------------------------------------------- /app/gateway/gateway_api/types/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/gateway/gateway_api/types/config.go -------------------------------------------------------------------------------- /app/group/group_api/etc/group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/etc/group.yaml -------------------------------------------------------------------------------- /app/group/group_api/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/group.go -------------------------------------------------------------------------------- /app/group/group_api/group_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/group_api.api -------------------------------------------------------------------------------- /app/group/group_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/config/config.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/getgroupmembershandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/getgroupmembershandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupcreatehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupcreatehandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupdeletehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupdeletehandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupinfohandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupinvitehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupinvitehandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupjoinrequestlisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupjoinrequestlisthandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupjoinrequestsynchandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupjoinrequestsynchandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupmemberaddhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupmemberaddhandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupmemberremovehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupmemberremovehandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupmembersynchandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupmembersynchandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupminehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupminehandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/groupsynchandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/groupsynchandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/joingrouphandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/joingrouphandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/quitgrouphandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/quitgrouphandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/searchgroupshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/searchgroupshandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/transferownerhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/transferownerhandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/updategroupinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/updategroupinfohandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/handler/updatememberrolehandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/handler/updatememberrolehandler.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/getgroupmemberslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/getgroupmemberslogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupcreatelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupcreatelogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupdeletelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupdeletelogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupinfologic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupinvitelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupinvitelogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupjoinrequesthandlelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupjoinrequesthandlelogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupjoinrequestlistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupjoinrequestlistlogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupjoinrequestsynclogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupjoinrequestsynclogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupmemberaddlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupmemberaddlogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupmemberremovelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupmemberremovelogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupmembersynclogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupmembersynclogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupminelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupminelogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/groupsynclogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/groupsynclogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/joingrouplogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/joingrouplogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/quitgrouplogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/quitgrouplogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/searchgroupslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/searchgroupslogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/transferownerlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/transferownerlogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/updategroupinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/updategroupinfologic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/logic/updatememberrolelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/logic/updatememberrolelogic.go -------------------------------------------------------------------------------- /app/group/group_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/group/group_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_api/internal/types/types.go -------------------------------------------------------------------------------- /app/group/group_models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_models/README.md -------------------------------------------------------------------------------- /app/group/group_models/group_join_request_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_models/group_join_request_model.go -------------------------------------------------------------------------------- /app/group/group_models/group_member_change_log_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_models/group_member_change_log_model.go -------------------------------------------------------------------------------- /app/group/group_models/group_member_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_models/group_member_model.go -------------------------------------------------------------------------------- /app/group/group_models/group_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_models/group_model.go -------------------------------------------------------------------------------- /app/group/group_rpc/etc/grouprpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/etc/grouprpc.yaml -------------------------------------------------------------------------------- /app/group/group_rpc/group/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/group/group.go -------------------------------------------------------------------------------- /app/group/group_rpc/group_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/group_rpc.proto -------------------------------------------------------------------------------- /app/group/group_rpc/grouprpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/grouprpc.go -------------------------------------------------------------------------------- /app/group/group_rpc/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/internal/config/config.go -------------------------------------------------------------------------------- /app/group/group_rpc/internal/logic/getgroupmemberslistbyidslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/internal/logic/getgroupmemberslistbyidslogic.go -------------------------------------------------------------------------------- /app/group/group_rpc/internal/logic/getgroupmemberslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/internal/logic/getgroupmemberslogic.go -------------------------------------------------------------------------------- /app/group/group_rpc/internal/logic/getgroupslistbyidslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/internal/logic/getgroupslistbyidslogic.go -------------------------------------------------------------------------------- /app/group/group_rpc/internal/logic/getusergroupidslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/internal/logic/getusergroupidslogic.go -------------------------------------------------------------------------------- /app/group/group_rpc/internal/logic/getusergroupmemberslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/internal/logic/getusergroupmemberslogic.go -------------------------------------------------------------------------------- /app/group/group_rpc/internal/server/groupserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/internal/server/groupserver.go -------------------------------------------------------------------------------- /app/group/group_rpc/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/group/group_rpc/types/group_rpc/group_rpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/types/group_rpc/group_rpc.pb.go -------------------------------------------------------------------------------- /app/group/group_rpc/types/group_rpc/group_rpc_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/group/group_rpc/types/group_rpc/group_rpc_grpc.pb.go -------------------------------------------------------------------------------- /app/moment/moment_api/etc/moment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/etc/moment.yaml -------------------------------------------------------------------------------- /app/moment/moment_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/config/config.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/handler/createmomenthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/handler/createmomenthandler.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/handler/deletemomenthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/handler/deletemomenthandler.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/handler/getcommentsbatchhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/handler/getcommentsbatchhandler.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/handler/getlikesbatchhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/handler/getlikesbatchhandler.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/handler/getmomentinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/handler/getmomentinfohandler.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/handler/getmomentsbatchhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/handler/getmomentsbatchhandler.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/handler/getmomentslisthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/handler/getmomentslisthandler.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/handler/likemomenthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/handler/likemomenthandler.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/logic/createmomentlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/logic/createmomentlogic.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/logic/deletemomentlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/logic/deletemomentlogic.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/logic/getcommentsbatchlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/logic/getcommentsbatchlogic.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/logic/getlikesbatchlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/logic/getlikesbatchlogic.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/logic/getmomentinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/logic/getmomentinfologic.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/logic/getmomentsbatchlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/logic/getmomentsbatchlogic.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/logic/getmomentslistlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/logic/getmomentslistlogic.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/logic/likemomentlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/logic/likemomentlogic.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/moment/moment_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/internal/types/types.go -------------------------------------------------------------------------------- /app/moment/moment_api/moment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/moment.go -------------------------------------------------------------------------------- /app/moment/moment_api/moment_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_api/moment_api.api -------------------------------------------------------------------------------- /app/moment/moment_models/moment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_models/moment.go -------------------------------------------------------------------------------- /app/moment/moment_models/moment_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_models/moment_comment.go -------------------------------------------------------------------------------- /app/moment/moment_models/moment_like.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_models/moment_like.go -------------------------------------------------------------------------------- /app/moment/moment_rpc/etc/momentrpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/etc/momentrpc.yaml -------------------------------------------------------------------------------- /app/moment/moment_rpc/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/internal/config/config.go -------------------------------------------------------------------------------- /app/moment/moment_rpc/internal/logic/getmomentlikeversionslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/internal/logic/getmomentlikeversionslogic.go -------------------------------------------------------------------------------- /app/moment/moment_rpc/internal/logic/getmomentversionslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/internal/logic/getmomentversionslogic.go -------------------------------------------------------------------------------- /app/moment/moment_rpc/internal/server/momentserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/internal/server/momentserver.go -------------------------------------------------------------------------------- /app/moment/moment_rpc/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/moment/moment_rpc/moment/moment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/moment/moment.go -------------------------------------------------------------------------------- /app/moment/moment_rpc/moment_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/moment_rpc.proto -------------------------------------------------------------------------------- /app/moment/moment_rpc/momentrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/momentrpc.go -------------------------------------------------------------------------------- /app/moment/moment_rpc/types/moment_rpc/moment_rpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/types/moment_rpc/moment_rpc.pb.go -------------------------------------------------------------------------------- /app/moment/moment_rpc/types/moment_rpc/moment_rpc_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/moment/moment_rpc/types/moment_rpc/moment_rpc_grpc.pb.go -------------------------------------------------------------------------------- /app/track/track_api/etc/track.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/etc/track.yaml -------------------------------------------------------------------------------- /app/track/track_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/internal/config/config.go -------------------------------------------------------------------------------- /app/track/track_api/internal/handler/logeventshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/internal/handler/logeventshandler.go -------------------------------------------------------------------------------- /app/track/track_api/internal/handler/reporteventshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/internal/handler/reporteventshandler.go -------------------------------------------------------------------------------- /app/track/track_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/track/track_api/internal/logic/logeventslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/internal/logic/logeventslogic.go -------------------------------------------------------------------------------- /app/track/track_api/internal/logic/reporteventslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/internal/logic/reporteventslogic.go -------------------------------------------------------------------------------- /app/track/track_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/track/track_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/internal/types/types.go -------------------------------------------------------------------------------- /app/track/track_api/track.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/track.go -------------------------------------------------------------------------------- /app/track/track_api/track_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_api/track_api.api -------------------------------------------------------------------------------- /app/track/track_models/track_bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_models/track_bucket.go -------------------------------------------------------------------------------- /app/track/track_models/track_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_models/track_event.go -------------------------------------------------------------------------------- /app/track/track_models/track_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/track/track_models/track_logger.go -------------------------------------------------------------------------------- /app/update/update_api/etc/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/etc/update.yaml -------------------------------------------------------------------------------- /app/update/update_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/internal/config/config.go -------------------------------------------------------------------------------- /app/update/update_api/internal/handler/getlatestversionhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/internal/handler/getlatestversionhandler.go -------------------------------------------------------------------------------- /app/update/update_api/internal/handler/reportversionhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/internal/handler/reportversionhandler.go -------------------------------------------------------------------------------- /app/update/update_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/update/update_api/internal/logic/getlatestversionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/internal/logic/getlatestversionlogic.go -------------------------------------------------------------------------------- /app/update/update_api/internal/logic/reportversionlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/internal/logic/reportversionlogic.go -------------------------------------------------------------------------------- /app/update/update_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/update/update_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/internal/types/types.go -------------------------------------------------------------------------------- /app/update/update_api/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/update.go -------------------------------------------------------------------------------- /app/update/update_api/update_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_api/update_api.api -------------------------------------------------------------------------------- /app/update/update_models/update_architecture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_models/update_architecture.go -------------------------------------------------------------------------------- /app/update/update_models/update_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_models/update_report.go -------------------------------------------------------------------------------- /app/update/update_models/update_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_models/update_strategy.go -------------------------------------------------------------------------------- /app/update/update_models/update_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_models/update_version.go -------------------------------------------------------------------------------- /app/update/update_models/upload_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/update/update_models/upload_app.go -------------------------------------------------------------------------------- /app/user/user_api/etc/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/etc/user.yaml -------------------------------------------------------------------------------- /app/user/user_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/config/config.go -------------------------------------------------------------------------------- /app/user/user_api/internal/handler/getdeviceshandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/handler/getdeviceshandler.go -------------------------------------------------------------------------------- /app/user/user_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/user/user_api/internal/handler/updateemailhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/handler/updateemailhandler.go -------------------------------------------------------------------------------- /app/user/user_api/internal/handler/updateinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/handler/updateinfohandler.go -------------------------------------------------------------------------------- /app/user/user_api/internal/handler/updatepasswordhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/handler/updatepasswordhandler.go -------------------------------------------------------------------------------- /app/user/user_api/internal/handler/userinfohandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/handler/userinfohandler.go -------------------------------------------------------------------------------- /app/user/user_api/internal/handler/usersynchandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/handler/usersynchandler.go -------------------------------------------------------------------------------- /app/user/user_api/internal/logic/getdeviceslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/logic/getdeviceslogic.go -------------------------------------------------------------------------------- /app/user/user_api/internal/logic/updateemaillogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/logic/updateemaillogic.go -------------------------------------------------------------------------------- /app/user/user_api/internal/logic/updateinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/logic/updateinfologic.go -------------------------------------------------------------------------------- /app/user/user_api/internal/logic/updatepasswordlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/logic/updatepasswordlogic.go -------------------------------------------------------------------------------- /app/user/user_api/internal/logic/userinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/logic/userinfologic.go -------------------------------------------------------------------------------- /app/user/user_api/internal/logic/usersynclogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/logic/usersynclogic.go -------------------------------------------------------------------------------- /app/user/user_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/user/user_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/internal/types/types.go -------------------------------------------------------------------------------- /app/user/user_api/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/user.go -------------------------------------------------------------------------------- /app/user/user_api/user_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_api/user_api.api -------------------------------------------------------------------------------- /app/user/user_models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_models/README.md -------------------------------------------------------------------------------- /app/user/user_models/user_change_log_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_models/user_change_log_model.go -------------------------------------------------------------------------------- /app/user/user_models/user_device_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_models/user_device_model.go -------------------------------------------------------------------------------- /app/user/user_models/user_module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_models/user_module.go -------------------------------------------------------------------------------- /app/user/user_rpc/etc/userrpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/etc/userrpc.yaml -------------------------------------------------------------------------------- /app/user/user_rpc/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/internal/config/config.go -------------------------------------------------------------------------------- /app/user/user_rpc/internal/logic/isfriendlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/internal/logic/isfriendlogic.go -------------------------------------------------------------------------------- /app/user/user_rpc/internal/logic/searchuserlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/internal/logic/searchuserlogic.go -------------------------------------------------------------------------------- /app/user/user_rpc/internal/logic/usercreatelogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/internal/logic/usercreatelogic.go -------------------------------------------------------------------------------- /app/user/user_rpc/internal/logic/userinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/internal/logic/userinfologic.go -------------------------------------------------------------------------------- /app/user/user_rpc/internal/logic/userlistinfologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/internal/logic/userlistinfologic.go -------------------------------------------------------------------------------- /app/user/user_rpc/internal/logic/userversionslogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/internal/logic/userversionslogic.go -------------------------------------------------------------------------------- /app/user/user_rpc/internal/server/userserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/internal/server/userserver.go -------------------------------------------------------------------------------- /app/user/user_rpc/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/user/user_rpc/types/user_rpc/user_rpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/types/user_rpc/user_rpc.pb.go -------------------------------------------------------------------------------- /app/user/user_rpc/types/user_rpc/user_rpc_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/types/user_rpc/user_rpc_grpc.pb.go -------------------------------------------------------------------------------- /app/user/user_rpc/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/user/user.go -------------------------------------------------------------------------------- /app/user/user_rpc/user_rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/user_rpc.proto -------------------------------------------------------------------------------- /app/user/user_rpc/userrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/user/user_rpc/userrpc.go -------------------------------------------------------------------------------- /app/ws/ws_api/etc/ws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/etc/ws.yaml -------------------------------------------------------------------------------- /app/ws/ws_api/internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/config/config.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/handler/chatwebsockethandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/handler/chatwebsockethandler.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/handler/proxysendmsghandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/handler/proxysendmsghandler.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/handler/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/handler/routes.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/logic/chatwebsocketlogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/logic/chatwebsocketlogic.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/logic/proxysendmsglogic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/logic/proxysendmsglogic.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/logic/websocket/chat_message/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/logic/websocket/chat_message/common.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/logic/websocket/chat_message/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/logic/websocket/chat_message/enter.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/logic/websocket/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/logic/websocket/enter.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/logic/websocket/heartbeat/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/logic/websocket/heartbeat/manager.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/logic/websocket/proxy_message/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/logic/websocket/proxy_message/enter.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/logic/websocket/types/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/logic/websocket/types/chat.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/logic/websocket/utils/websocket_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/logic/websocket/utils/websocket_utils.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/logic/websocket/webrtc_message/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/logic/websocket/webrtc_message/enter.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/redis_ws/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/redis_ws/manager.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/redis_ws/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/redis_ws/utils.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/svc/servicecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/svc/servicecontext.go -------------------------------------------------------------------------------- /app/ws/ws_api/internal/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/internal/types/types.go -------------------------------------------------------------------------------- /app/ws/ws_api/response/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/response/response.go -------------------------------------------------------------------------------- /app/ws/ws_api/types/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/types/msg.go -------------------------------------------------------------------------------- /app/ws/ws_api/types/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/types/proxy.go -------------------------------------------------------------------------------- /app/ws/ws_api/types/ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/types/ws.go -------------------------------------------------------------------------------- /app/ws/ws_api/ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/ws.go -------------------------------------------------------------------------------- /app/ws/ws_api/ws_api.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/app/ws/ws_api/ws_api.api -------------------------------------------------------------------------------- /common/ajax/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/ajax/enter.go -------------------------------------------------------------------------------- /common/ajax/ip_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/ajax/ip_location.go -------------------------------------------------------------------------------- /common/etcd/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/etcd/etcd.go -------------------------------------------------------------------------------- /common/list_query/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/list_query/enter.go -------------------------------------------------------------------------------- /common/middleware/grpc/requestlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/middleware/grpc/requestlog.go -------------------------------------------------------------------------------- /common/middleware/http/requestlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/middleware/http/requestlog.go -------------------------------------------------------------------------------- /common/middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/middleware/middleware.go -------------------------------------------------------------------------------- /common/middleware/requestlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/middleware/requestlog.go -------------------------------------------------------------------------------- /common/middleware/userAgent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/middleware/userAgent.go -------------------------------------------------------------------------------- /common/middleware/utils/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/middleware/utils/log.go -------------------------------------------------------------------------------- /common/models/ctype/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/models/ctype/msg.go -------------------------------------------------------------------------------- /common/models/ctype/user_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/models/ctype/user_info.go -------------------------------------------------------------------------------- /common/models/ctype/verification_question.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/models/ctype/verification_question.go -------------------------------------------------------------------------------- /common/models/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/models/enter.go -------------------------------------------------------------------------------- /common/response/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/response/enter.go -------------------------------------------------------------------------------- /common/validator/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/validator/validator.go -------------------------------------------------------------------------------- /common/wsEnum/wsCommandConst/wsCommandConst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/wsEnum/wsCommandConst/wsCommandConst.go -------------------------------------------------------------------------------- /common/wsEnum/wsTypeConst/wsTypeConst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/wsEnum/wsTypeConst/wsTypeConst.go -------------------------------------------------------------------------------- /common/zrpc_interceptor/clientInfoInterceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/common/zrpc_interceptor/clientInfoInterceptor.go -------------------------------------------------------------------------------- /core/InitSFU.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/core/InitSFU.go -------------------------------------------------------------------------------- /core/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/core/etcd.go -------------------------------------------------------------------------------- /core/gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/core/gorm.go -------------------------------------------------------------------------------- /core/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/core/redis.go -------------------------------------------------------------------------------- /core/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/core/version/version.go -------------------------------------------------------------------------------- /database/InitFileData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/database/InitFileData.go -------------------------------------------------------------------------------- /database/InitUpdateData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/database/InitUpdateData.go -------------------------------------------------------------------------------- /database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/database/database.go -------------------------------------------------------------------------------- /deploy/auth_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/auth_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/auth_admin/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/auth_admin/auth.yaml -------------------------------------------------------------------------------- /deploy/auth_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/auth_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/auth_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/auth_api/Dockerfile -------------------------------------------------------------------------------- /deploy/auth_api/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/auth_api/auth.yaml -------------------------------------------------------------------------------- /deploy/auth_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/auth_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/chat_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/chat_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/chat_admin/chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/chat_admin/chat.yaml -------------------------------------------------------------------------------- /deploy/chat_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/chat_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/chat_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/chat_api/Dockerfile -------------------------------------------------------------------------------- /deploy/chat_api/chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/chat_api/chat.yaml -------------------------------------------------------------------------------- /deploy/chat_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/chat_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/chat_rpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/chat_rpc/Dockerfile -------------------------------------------------------------------------------- /deploy/chat_rpc/chatrpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/chat_rpc/chatrpc.yaml -------------------------------------------------------------------------------- /deploy/chat_rpc/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/chat_rpc/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/config.sh -------------------------------------------------------------------------------- /deploy/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/config.txt -------------------------------------------------------------------------------- /deploy/dictionary_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/dictionary_api/Dockerfile -------------------------------------------------------------------------------- /deploy/dictionary_api/dictionary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/dictionary_api/dictionary.yaml -------------------------------------------------------------------------------- /deploy/dictionary_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/dictionary_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/dictionary_rpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/dictionary_rpc/Dockerfile -------------------------------------------------------------------------------- /deploy/dictionary_rpc/dictionaryrpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/dictionary_rpc/dictionaryrpc.yaml -------------------------------------------------------------------------------- /deploy/dictionary_rpc/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/dictionary_rpc/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/emoji_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/emoji_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/emoji_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/emoji_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/emoji_admin/emoji.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/emoji_admin/emoji.yaml -------------------------------------------------------------------------------- /deploy/emoji_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/emoji_api/Dockerfile -------------------------------------------------------------------------------- /deploy/emoji_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/emoji_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/emoji_api/emoji.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/emoji_api/emoji.yaml -------------------------------------------------------------------------------- /deploy/feedback_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/feedback_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/feedback_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/feedback_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/feedback_admin/feedback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/feedback_admin/feedback.yaml -------------------------------------------------------------------------------- /deploy/feedback_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/feedback_api/Dockerfile -------------------------------------------------------------------------------- /deploy/feedback_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/feedback_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/feedback_api/feedback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/feedback_api/feedback.yaml -------------------------------------------------------------------------------- /deploy/file_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/file_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/file_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/file_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/file_admin/file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/file_admin/file.yaml -------------------------------------------------------------------------------- /deploy/file_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/file_api/Dockerfile -------------------------------------------------------------------------------- /deploy/file_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/file_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/file_api/file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/file_api/file.yaml -------------------------------------------------------------------------------- /deploy/file_rpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/file_rpc/Dockerfile -------------------------------------------------------------------------------- /deploy/file_rpc/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/file_rpc/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/file_rpc/filerpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/file_rpc/filerpc.yaml -------------------------------------------------------------------------------- /deploy/friend_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/friend_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/friend_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/friend_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/friend_admin/friend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/friend_admin/friend.yaml -------------------------------------------------------------------------------- /deploy/friend_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/friend_api/Dockerfile -------------------------------------------------------------------------------- /deploy/friend_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/friend_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/friend_api/friend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/friend_api/friend.yaml -------------------------------------------------------------------------------- /deploy/friend_rpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/friend_rpc/Dockerfile -------------------------------------------------------------------------------- /deploy/friend_rpc/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/friend_rpc/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/friend_rpc/friendrpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/friend_rpc/friendrpc.yaml -------------------------------------------------------------------------------- /deploy/gateway_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/gateway_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/gateway_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/gateway_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/gateway_admin/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/gateway_admin/gateway.yaml -------------------------------------------------------------------------------- /deploy/gateway_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/gateway_api/Dockerfile -------------------------------------------------------------------------------- /deploy/gateway_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/gateway_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/gateway_api/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/gateway_api/gateway.yaml -------------------------------------------------------------------------------- /deploy/group_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/group_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/group_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/group_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/group_admin/group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/group_admin/group.yaml -------------------------------------------------------------------------------- /deploy/group_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/group_api/Dockerfile -------------------------------------------------------------------------------- /deploy/group_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/group_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/group_api/group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/group_api/group.yaml -------------------------------------------------------------------------------- /deploy/group_rpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/group_rpc/Dockerfile -------------------------------------------------------------------------------- /deploy/group_rpc/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/group_rpc/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/group_rpc/grouprpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/group_rpc/grouprpc.yaml -------------------------------------------------------------------------------- /deploy/moment_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/moment_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/moment_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/moment_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/moment_admin/moment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/moment_admin/moment.yaml -------------------------------------------------------------------------------- /deploy/moment_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/moment_api/Dockerfile -------------------------------------------------------------------------------- /deploy/moment_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/moment_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/moment_api/moment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/moment_api/moment.yaml -------------------------------------------------------------------------------- /deploy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/start.sh -------------------------------------------------------------------------------- /deploy/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/stop.sh -------------------------------------------------------------------------------- /deploy/system_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/system_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/system_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/system_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/system_admin/system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/system_admin/system.yaml -------------------------------------------------------------------------------- /deploy/track_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/track_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/track_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/track_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/track_admin/track.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/track_admin/track.yaml -------------------------------------------------------------------------------- /deploy/track_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/track_api/Dockerfile -------------------------------------------------------------------------------- /deploy/track_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/track_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/track_api/track.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/track_api/track.yaml -------------------------------------------------------------------------------- /deploy/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/update.sh -------------------------------------------------------------------------------- /deploy/update_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/update_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/update_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/update_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/update_admin/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/update_admin/update.yaml -------------------------------------------------------------------------------- /deploy/update_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/update_api/Dockerfile -------------------------------------------------------------------------------- /deploy/update_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/update_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/update_api/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/update_api/update.yaml -------------------------------------------------------------------------------- /deploy/user_admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/user_admin/Dockerfile -------------------------------------------------------------------------------- /deploy/user_admin/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/user_admin/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/user_admin/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/user_admin/user.yaml -------------------------------------------------------------------------------- /deploy/user_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/user_api/Dockerfile -------------------------------------------------------------------------------- /deploy/user_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/user_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/user_api/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/user_api/user.yaml -------------------------------------------------------------------------------- /deploy/user_rpc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/user_rpc/Dockerfile -------------------------------------------------------------------------------- /deploy/user_rpc/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/user_rpc/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/user_rpc/userrpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/user_rpc/userrpc.yaml -------------------------------------------------------------------------------- /deploy/ws_api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/ws_api/Dockerfile -------------------------------------------------------------------------------- /deploy/ws_api/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/ws_api/docker-compose.yaml -------------------------------------------------------------------------------- /deploy/ws_api/ws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/deploy/ws_api/ws.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/go.sum -------------------------------------------------------------------------------- /group_api.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/group_api.exe -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/main.go -------------------------------------------------------------------------------- /static/image/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/image/group.png -------------------------------------------------------------------------------- /static/image/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/image/user.png -------------------------------------------------------------------------------- /static/mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/README.md -------------------------------------------------------------------------------- /static/mobile/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/about.jpg -------------------------------------------------------------------------------- /static/mobile/add-members.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/add-members.jpg -------------------------------------------------------------------------------- /static/mobile/chat-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/chat-details.jpg -------------------------------------------------------------------------------- /static/mobile/create-group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/create-group.jpg -------------------------------------------------------------------------------- /static/mobile/edit-remark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/edit-remark.jpg -------------------------------------------------------------------------------- /static/mobile/feedback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/feedback.jpg -------------------------------------------------------------------------------- /static/mobile/find-password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/find-password.jpg -------------------------------------------------------------------------------- /static/mobile/friend-info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/friend-info.jpg -------------------------------------------------------------------------------- /static/mobile/friend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/friend.jpg -------------------------------------------------------------------------------- /static/mobile/group-chat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/group-chat.jpg -------------------------------------------------------------------------------- /static/mobile/group-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/group-details.jpg -------------------------------------------------------------------------------- /static/mobile/group-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/group-list.jpg -------------------------------------------------------------------------------- /static/mobile/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/login.jpg -------------------------------------------------------------------------------- /static/mobile/message.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/message.jpg -------------------------------------------------------------------------------- /static/mobile/mine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/mine.jpg -------------------------------------------------------------------------------- /static/mobile/moments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/moments.jpg -------------------------------------------------------------------------------- /static/mobile/new-friends.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/new-friends.jpg -------------------------------------------------------------------------------- /static/mobile/private-chat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/private-chat.jpg -------------------------------------------------------------------------------- /static/mobile/profile-edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/profile-edit.jpg -------------------------------------------------------------------------------- /static/mobile/qcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/qcode.jpg -------------------------------------------------------------------------------- /static/mobile/register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/register.jpg -------------------------------------------------------------------------------- /static/mobile/send-emoji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/send-emoji.jpg -------------------------------------------------------------------------------- /static/mobile/send-moments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/send-moments.jpg -------------------------------------------------------------------------------- /static/mobile/send-text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/send-text.jpg -------------------------------------------------------------------------------- /static/mobile/settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/settings.jpg -------------------------------------------------------------------------------- /static/mobile/start-group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/start-group.jpg -------------------------------------------------------------------------------- /static/mobile/statement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/statement.jpg -------------------------------------------------------------------------------- /static/mobile/update.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/mobile/update.jpg -------------------------------------------------------------------------------- /static/sponsor/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/sponsor/wechat.jpg -------------------------------------------------------------------------------- /static/sponsor/zhifubao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/static/sponsor/zhifubao.jpg -------------------------------------------------------------------------------- /template/api/config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/config.tpl -------------------------------------------------------------------------------- /template/api/context.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/context.tpl -------------------------------------------------------------------------------- /template/api/etc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/etc.tpl -------------------------------------------------------------------------------- /template/api/handler.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/handler.tpl -------------------------------------------------------------------------------- /template/api/logic.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/logic.tpl -------------------------------------------------------------------------------- /template/api/main.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/main.tpl -------------------------------------------------------------------------------- /template/api/middleware.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/middleware.tpl -------------------------------------------------------------------------------- /template/api/route-addition.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/route-addition.tpl -------------------------------------------------------------------------------- /template/api/routes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/routes.tpl -------------------------------------------------------------------------------- /template/api/template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/template.tpl -------------------------------------------------------------------------------- /template/api/types.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/api/types.tpl -------------------------------------------------------------------------------- /template/docker/docker.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/docker/docker.tpl -------------------------------------------------------------------------------- /template/gateway/etc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/gateway/etc.tpl -------------------------------------------------------------------------------- /template/gateway/main.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/gateway/main.tpl -------------------------------------------------------------------------------- /template/kube/deployment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/kube/deployment.tpl -------------------------------------------------------------------------------- /template/kube/job.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/kube/job.tpl -------------------------------------------------------------------------------- /template/model/delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/delete.tpl -------------------------------------------------------------------------------- /template/model/err.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/err.tpl -------------------------------------------------------------------------------- /template/model/field.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/field.tpl -------------------------------------------------------------------------------- /template/model/find-one-by-field-extra-method.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/find-one-by-field-extra-method.tpl -------------------------------------------------------------------------------- /template/model/find-one-by-field.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/find-one-by-field.tpl -------------------------------------------------------------------------------- /template/model/find-one.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/find-one.tpl -------------------------------------------------------------------------------- /template/model/import-no-cache.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/import-no-cache.tpl -------------------------------------------------------------------------------- /template/model/import.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/import.tpl -------------------------------------------------------------------------------- /template/model/insert.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/insert.tpl -------------------------------------------------------------------------------- /template/model/interface-delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/interface-delete.tpl -------------------------------------------------------------------------------- /template/model/interface-find-one-by-field.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/interface-find-one-by-field.tpl -------------------------------------------------------------------------------- /template/model/interface-find-one.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/interface-find-one.tpl -------------------------------------------------------------------------------- /template/model/interface-insert.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/interface-insert.tpl -------------------------------------------------------------------------------- /template/model/interface-update.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/interface-update.tpl -------------------------------------------------------------------------------- /template/model/model-gen.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/model-gen.tpl -------------------------------------------------------------------------------- /template/model/model-new.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/model-new.tpl -------------------------------------------------------------------------------- /template/model/model.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/model.tpl -------------------------------------------------------------------------------- /template/model/table-name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/table-name.tpl -------------------------------------------------------------------------------- /template/model/tag.tpl: -------------------------------------------------------------------------------- 1 | `db:"{{.field}}"` -------------------------------------------------------------------------------- /template/model/types.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/types.tpl -------------------------------------------------------------------------------- /template/model/update.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/update.tpl -------------------------------------------------------------------------------- /template/model/var.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/model/var.tpl -------------------------------------------------------------------------------- /template/mongo/err.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/mongo/err.tpl -------------------------------------------------------------------------------- /template/mongo/model.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/mongo/model.tpl -------------------------------------------------------------------------------- /template/mongo/model_custom.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/mongo/model_custom.tpl -------------------------------------------------------------------------------- /template/mongo/model_types.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/mongo/model_types.tpl -------------------------------------------------------------------------------- /template/newapi/newtemplate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/newapi/newtemplate.tpl -------------------------------------------------------------------------------- /template/rpc/call.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/rpc/call.tpl -------------------------------------------------------------------------------- /template/rpc/config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/rpc/config.tpl -------------------------------------------------------------------------------- /template/rpc/etc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/rpc/etc.tpl -------------------------------------------------------------------------------- /template/rpc/logic-func.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/rpc/logic-func.tpl -------------------------------------------------------------------------------- /template/rpc/logic.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/rpc/logic.tpl -------------------------------------------------------------------------------- /template/rpc/main.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/rpc/main.tpl -------------------------------------------------------------------------------- /template/rpc/server-func.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/rpc/server-func.tpl -------------------------------------------------------------------------------- /template/rpc/server.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/rpc/server.tpl -------------------------------------------------------------------------------- /template/rpc/svc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/rpc/svc.tpl -------------------------------------------------------------------------------- /template/rpc/template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/template/rpc/template.tpl -------------------------------------------------------------------------------- /update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/update.md -------------------------------------------------------------------------------- /utils/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/array.go -------------------------------------------------------------------------------- /utils/conversation/cities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/conversation/cities.go -------------------------------------------------------------------------------- /utils/conversation/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/conversation/enter.go -------------------------------------------------------------------------------- /utils/device/device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/device/device.go -------------------------------------------------------------------------------- /utils/email/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/email/email.go -------------------------------------------------------------------------------- /utils/jwts/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/jwts/enter.go -------------------------------------------------------------------------------- /utils/maps/ref_to_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/maps/ref_to_map.go -------------------------------------------------------------------------------- /utils/md5/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/md5/enter.go -------------------------------------------------------------------------------- /utils/pwd/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/pwd/enter.go -------------------------------------------------------------------------------- /utils/rand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/rand/rand.go -------------------------------------------------------------------------------- /utils/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsrh8888/beaver-server/HEAD/utils/uuid/uuid.go --------------------------------------------------------------------------------