jjss_tocargo 0.1.6

test crate repo
Documentation

//! # Location
//! 
//! test location

/// Continent of the world
pub enum Continent {
    Asia,
    Europe,
    Africa,
    America,
    Oceania,
}

/// country of the world
pub enum Country {
    Korea,
    Japan,
    China,
    USA,
    Canada,
    France,
    Germany,
    UK,
    Australia,
    NewZealand,
}