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