mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
10 lines
115 B
Go
10 lines
115 B
Go
//go:build !windows || sqlite3_nosys
|
|
|
|
package vfs
|
|
|
|
import "time"
|
|
|
|
func osSleep(d time.Duration) {
|
|
time.Sleep(d)
|
|
}
|