feat(config): add LANGUAGES constant for language enum values

This commit is contained in:
cfngc4594 2025-05-13 16:00:52 +08:00
parent f6ed0baaf0
commit 0e3daefe48

3
src/config/language.ts Normal file
View File

@ -0,0 +1,3 @@
import { Language } from "@/generated/client";
export const LANGUAGES = Object.values(Language);