kodik-utils 0.1.0

A Rust library for getting direct links to files from Kodik.
Documentation
1
2
3
4
5
6
7
8
use crate::ua::random_user_agent;

#[test]
fn random_agent_is_not_always_same() {
    let a1 = random_user_agent();
    let a2 = random_user_agent();
    assert_ne!(a1, a2);
}