Skip to content

Commit

Permalink
fix: LangObject dto
Browse files Browse the repository at this point in the history
  • Loading branch information
廖长江 committed Oct 22, 2022
1 parent 69fa341 commit a5189f8
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions dto/LangObject.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
package dto


type LangObject struct{
'zh-CN' LangUnit `json:"'zh-CN'"`
'en-US' LangUnit `json:"'en-US'"`
'zh-TW' LangUnit `json:"'zh-TW'"`
'ja-JP' LangUnit `json:"'ja-JP'"`
type LangObject struct {
zhCN LangUnit `json:"zh-CN"`
enUS LangUnit `json:"en-US"`
zhTW LangUnit `json:"zh-TW"`
jaJP LangUnit `json:"ja-JP"`
}

0 comments on commit a5189f8

Please sign in to comment.