randua 0.1.2

A random user-agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# A random user-agent

base a project `surferua (go-lang)` (git@github.com:jiusanzhou/surferua.git)  -- thank you

```rs

use crate::randua;

fn main(){
    randua::new().firefox().phone().to_string(); // a firefox and mobile user agent
    randua::new().chrome().phone().to_string(); // a chrome and mobile user agent
    randua::new().chrome().desktop().to_string(); // a chrome and desktop user agent
    randua::new().to_string(); // a random user agent
}

```