🎨 增加 Go 后端

This commit is contained in:
江西小徐
2024-04-07 11:08:05 +08:00
parent 04c82ab25d
commit 61275be2bf
165 changed files with 7043 additions and 3599 deletions
+12
View File
@@ -0,0 +1,12 @@
// 定义表示单个选项的接口
interface SelectOption {
label: string;
value: string;
}
// 定义表示整个 JSON 对象的接口
interface WebSiteConfig {
logoLeftText: string;
logoRightText: string;
defaultSelectOptions: SelectOption[];
}