mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
.. | ||
.gitignore | ||
.go-makefile.json | ||
.travis.yml | ||
glide.lock | ||
glide.yaml | ||
LICENSE | ||
Makefile | ||
README.md | ||
uarand.go | ||
useragents.go | ||
useragents.mk |
uarand
Random user-agent producer for go.
Example
package main
import (
"fmt"
"github.com/corpix/uarand"
)
func main() {
fmt.Println(uarand.GetRandom())
}
Save it to snippet.go
and run:
go run snippet.go
Which should produce something similar to:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36
License
MIT