返回 DeepSeek-Reasonix
topic_sort_test_helpers_test.go
根目录 / desktop / topic_sort_test_helpers_test.go
1 package main
2
3 import "time"
4
5 func waitForLaterTopicTimestamp(createdAt int64) {
6 for time.Now().UnixMilli() <= createdAt {
7 time.Sleep(time.Millisecond)
8 }
9 }
10
10 lines GO