remotely-save/index.ts
2022-03-20 16:18:23 +08:00

10 lines
165 B
TypeScript

import en from "./en.json";
import zh_cn from "./zh_cn.json";
import zh_tw from "./zh_tw.json";
export const LANGS = {
en: en,
zh_cn: zh_cn,
zh_tw: zh_tw,
};