mirror of
https://github.com/rancher/plugins.git
synced 2025-07-07 03:59:23 +00:00
11 lines
100 B
Go
11 lines
100 B
Go
package dhcp4client
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
func init() {
|
|
rand.Seed(time.Now().Unix())
|
|
}
|