2025-07-17 06:09:52 +08:00
|
|
|
package controller
|
|
|
|
|
|
|
|
|
|
import (
|
2025-08-28 21:35:56 +00:00
|
|
|
"blazing/common/data/socket"
|
2025-07-31 07:31:25 +00:00
|
|
|
"blazing/common/socket/errorcode"
|
2025-07-26 02:06:08 +00:00
|
|
|
"blazing/logic/service/systemtime"
|
2025-07-17 06:09:52 +08:00
|
|
|
)
|
|
|
|
|
|
2025-08-28 21:35:56 +00:00
|
|
|
func (h Controller) SystemTimeInfo(data *systemtime.InInfo, c *socket.Player) (result *systemtime.OutInfo, err errorcode.ErrorCode) {
|
2025-07-25 23:37:02 +08:00
|
|
|
|
2025-08-11 07:25:18 +00:00
|
|
|
return systemtime.NewOutInfo(), 0
|
2025-07-17 06:09:52 +08:00
|
|
|
}
|