2025-08-20 22:34:45 +08:00
|
|
|
package controller
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"blazing/common/socket/errorcode"
|
2025-09-04 02:00:57 +08:00
|
|
|
"blazing/logic/service"
|
2025-08-20 22:34:45 +08:00
|
|
|
"blazing/logic/service/friend"
|
|
|
|
|
)
|
|
|
|
|
|
2025-09-04 02:00:57 +08:00
|
|
|
func (h Controller) OnSeeOnline(data *friend.SeeOnlineInboundInfo, c *service.Player) (result *friend.SeeOnlineOutboundInfo, err errorcode.ErrorCode) {
|
2025-08-20 22:34:45 +08:00
|
|
|
result = &friend.SeeOnlineOutboundInfo{}
|
|
|
|
|
result.Friends = make([]friend.OnlineInfo, 0)
|
|
|
|
|
return
|
|
|
|
|
}
|