dechdev_rs 0.1.47

A Rust library by DECHDEV.
Documentation
1
2
3
4
5
6
use crate::utils::network;

pub fn example_get_publish_ip() {
    let publish_ip = network::get_publish_ip();
    println!("Publish IP: {}", publish_ip);
}