Files
Situation-Awareness-Platfor…/src/setting.ts
2025-03-12 18:41:20 +08:00

24 lines
489 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* setting用于保存全局常量配置信息
*/
const setting:any = {
slogon: '共创GitCode开发者的代码家园',
copyright: {
digest: '2024 重庆开源共创科技有限公司版权所有',
digestAbbr: '2024 重庆开源共创',
icp: '渝ICP备2023009037号',
beian: '11010502030143'
},
repo: {
defaultBranch: 'main',
defaultFile: 'README.md'
},
role: {
visitor: 10,
developer: 30,
admin: 50
}
};
export default setting;