This commit is contained in:
aozhiwei 2024-08-13 16:45:43 +08:00
parent af60e1b80f
commit 7112c70c50

View File

@ -8,4 +8,9 @@ type BitGetApi struct {
}
func (this *BitGetApi) NewUserMission(c *gin.Context) {
rspObj := struct {
Missions []struct{
} `json:"missions"`
}{}
c.JSON(200, rspObj)
}