mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 10:30:08 +00:00
14 lines
266 B
Swift
14 lines
266 B
Swift
import Foundation
|
|
|
|
import TelegramCorePrivateModule
|
|
|
|
public struct MonotonicTime {
|
|
public func getBootTimestamp() -> Int64 {
|
|
return MonotonicGetBootTimestamp()
|
|
}
|
|
|
|
public func getUptime() -> Int64 {
|
|
return MonotonicGetUptime()
|
|
}
|
|
}
|