// Copyright (c) 2021 - 2022 GreenYun Organization
// SPDX-License-Identifier: MIT
usestrum_macros::Display;/// The `Lang` type has three values:
/// `EN` for English,
/// `SC` for Simplified Chinese, and
/// `TC` for Traditional Chinese.
#[derive(Display)]#[strum(serialize_all ="lowercase")]pubenumLang{EN,SC,TC,}