Files
juwan-backend/app/chat/rpc/internal/logic/helpers.go
T
2026-04-24 21:02:07 +08:00

11 lines
117 B
Go

package logic
import "time"
func nowUnix(ts int64) int64 {
if ts > 0 {
return ts
}
return time.Now().Unix()
}