mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-03 08:08:04 -05:00
18 lines
336 B
Go
18 lines
336 B
Go
|
|
package http
|
||
|
|
|
||
|
|
import (
|
||
|
|
bm "go-common/library/net/http/blademaster"
|
||
|
|
)
|
||
|
|
|
||
|
|
func saveBugly2Tapd(c *bm.Context) {
|
||
|
|
c.JSON(nil, srv.AsyncBuglyInsertTapd(c))
|
||
|
|
}
|
||
|
|
|
||
|
|
func updateBuglyStatusInTapd(c *bm.Context) {
|
||
|
|
c.JSON(nil, srv.AsyncUpdateBuglyStatusInTapd(c))
|
||
|
|
}
|
||
|
|
|
||
|
|
func updateTitleInTapd(c *bm.Context) {
|
||
|
|
c.JSON(nil, srv.AsyncUpdateBugInTapd(c))
|
||
|
|
}
|