random-api-go/config/config.go

21 lines
215 B
Go

package config
import (
"math/rand"
"time"
)
const (
Port = ":5003"
RequestTimeout = 10 * time.Second
EnvBaseURL = "BASE_URL"
)
var (
RNG *rand.Rand
)
func InitRNG(r *rand.Rand) {
RNG = r
}