Drop ALL STARS

Signed-off-by: Yuan Si <do4suki@gmail.com>
This commit is contained in:
2025-03-10 15:29:29 +08:00
committed by YumeMichi
parent fc55a09773
commit 782c2d7ab0
3288 changed files with 1 additions and 234137 deletions
-52
View File
@@ -139,55 +139,3 @@ func SifRouter(r *gin.Engine) {
w.POST("/upload", handler.Upload)
}
}
func AsRouter(r *gin.Engine) {
r.Static("/llas-dev/static", "static")
s := r.Group("ep3071").Use(middleware.CommonAs)
{
s.POST("/asset/getPackUrl", handler.AsGetPackUrl)
s.POST("/billing/fetchBillingHistory", handler.AsFetchBillingHistory)
s.POST("/bootstrap/fetchBootstrap", handler.AsFetchBootstrap)
s.POST("/bootstrap/getClearedPlatformAchievement", handler.AsGetClearedPlatformAchievement)
s.POST("/card/changeIsAwakeningImage", handler.AsChangeIsAwakeningImage)
s.POST("/card/getOtherUserCard", handler.AsGetOtherUserCard)
s.POST("/card/updateCardNewFlag", handler.AsUpdateCardNewFlag)
s.POST("/communicationMember/fetchCommunicationMemberDetail", handler.AsFetchCommunicationMemberDetail)
s.POST("/communicationMember/finishUserStoryMember", handler.AsFinishUserStoryMember)
s.POST("/communicationMember/finishUserStorySide", handler.AsFinishUserStorySide)
s.POST("/communicationMember/setTheme", handler.AsSetTheme)
s.POST("/communicationMember/setFavoriteMember", handler.AsSetFavoriteMember)
s.POST("/communicationMember/updateUserCommunicationMemberDetailBadge", handler.AsUpdateUserCommunicationMemberDetailBadge)
s.POST("/communicationMember/updateUserLiveDifficultyNewFlag", handler.AsUpdateUserLiveDifficultyNewFlag)
s.POST("/emblem/activateEmblem", handler.AsActivateEmblem)
s.POST("/emblem/fetchEmblem", handler.AsFetchEmblem)
s.POST("/gameSettings/updatePushNotificationSettings", handler.AsUpdatePushNotificationSettings)
s.POST("/lesson/executeLesson", handler.AsExecuteLesson)
s.POST("/lesson/resultLesson", handler.AsResultLesson)
s.POST("/lesson/saveDeck", handler.AsSaveDeckLesson)
s.POST("/lesson/skillEditResult", handler.AsSkillEditResult)
s.POST("/liveDeck/fetchLiveDeckSelect", handler.AsFetchLiveDeckSelect)
s.POST("/liveDeck/saveDeckAll", handler.AsSaveDeckAll)
s.POST("/liveDeck/saveDeck", handler.AsSaveDeck)
s.POST("/liveDeck/saveSuit", handler.AsSaveSuit)
s.POST("/live/fetchLiveMusicSelect", handler.AsFetchLiveMusicSelect)
s.POST("/live/finish", handler.AsLiveFinish)
s.POST("/liveMv/saveDeck", handler.AsLiveMvSaveDeck)
s.POST("/liveMv/start", handler.AsLiveMvStart)
s.POST("/livePartners/fetch", handler.AsFetchLivePartners)
s.POST("/live/start", handler.AsLiveStart)
s.POST("/login/login", handler.AsLogin)
s.POST("/mission/clearMissionBadge", handler.AsClearMissionBadge)
s.POST("/mission/fetchMission", handler.AsFetchMission)
s.POST("/navi/saveUserNaviVoice", handler.AsSaveUserNaviVoice)
s.POST("/navi/tapLovePoint", handler.AsTapLovePoint)
s.POST("/notice/fetchNoticeDetail", handler.AsFetchNoticeDetail)
s.POST("/notice/fetchNotice", handler.AsFetchNotice)
s.POST("/present/fetch", handler.AsFetchPresent)
s.POST("/storyEventHistory/finishStory", handler.AsFinishStory)
s.POST("/story/finishStoryLinkage", handler.AsFinishStoryLinkage)
s.POST("/story/finishUserStoryMain", handler.AsFinishStoryMain)
s.POST("/trainingTree/fetchTrainingTree", handler.AsFetchTrainingTree)
s.POST("/userProfile/fetchProfile", handler.AsFetchProfile)
s.POST("/userProfile/setProfile", handler.AsSetProfile)
}
}