Files
native-mdns/src/jvmMain/kotlin/cn/rtast/nmdns/sleep1.jvm.kt
T
2025-09-29 01:43:17 +08:00

11 lines
162 B
Kotlin

/*
* Copyright © 2025 RTAkland
* Author: RTAkland
* Date: 9/29/25
*/
package cn.rtast.nmdns
actual fun sleep1(time: Int) {
Thread.sleep(time * 1000L)
}