This commit is contained in:
lbenedar
2026-04-02 18:37:30 +03:00
commit d5577f10d7
26 changed files with 1946 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package models
type Language struct {
Id string `json:"id"`
Label string `json:"label"`
Modules []LangModule `json:"modules"`
}
type LangModule struct {
Id string `json:"id"`
Label string `json:"label"`
Path string `json:"path"`
}