janggab 0.1.0

THis is janggab
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub struct Windows;

pub struct Wsl;

impl Windows {
    pub fn new(ip: &str, width: i32, height: i32) {
        janggab_core::get_webcam::udp::client::client_main(ip, width, height).unwrap();
    }
}

impl Wsl {
    pub fn new(width: usize, height: usize) {
        janggab_core::get_webcam::udp::server::server_main(width, height).unwrap();
    }
}