getCurrentTime 获取当前时间戳(毫秒)
()
| 61 | |
| 62 | // getCurrentTime 获取当前时间戳(毫秒) |
| 63 | func (r *relationDAO) getCurrentTime() int64 { |
| 64 | return time.Now().UnixMilli() |
| 65 | } |
| 66 | |
| 67 | // ListFollowerRelations 获取关注者的关系列表 |
| 68 | func (r *relationDAO) ListFollowerRelations(ctx context.Context, followerID int64, pagination domain.Pagination) ([]Relation, error) { |
no outgoing calls
no test coverage detected