README.md

 1uarand
 2----------------
 3
 4[![Build Status](https://travis-ci.org/corpix/uarand.svg?branch=master)](https://travis-ci.org/corpix/uarand)
 5
 6Random user-agent producer for go.
 7
 8## Example
 9
10``` go
11package main
12
13import (
14	"fmt"
15
16	"github.com/corpix/uarand"
17)
18
19func main() {
20	fmt.Println(uarand.GetRandom())
21}
22```
23
24Save it to `snippet.go` and run:
25
26``` shell
27go run snippet.go
28```
29
30Which should produce something similar to:
31
32``` text
33Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36
34```
35
36## License
37
38MIT