Files
bl/logic/controller/systemtime.go

14 lines
311 B
Go
Raw Normal View History

package controller
import (
"blazing/common/data/entity"
"blazing/logic/service"
"blazing/logic/service/SystemTime"
)
func (h Controller) SystemTimeInfo(data *SystemTime.InInfo, c *entity.Player) (result *SystemTime.OutInfo, err service.OutInfo) {
result = SystemTime.NewOutInfo()
return
}