mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
12 lines
166 B
Go
12 lines
166 B
Go
package builtin
|
|
|
|
import "time"
|
|
|
|
var Functions = map[string]interface{}{
|
|
"sleep": Sleep,
|
|
}
|
|
|
|
func Sleep(nSecs int) {
|
|
time.Sleep(time.Duration(nSecs) * time.Second)
|
|
}
|