meta parsing

This commit is contained in:
2025-02-12 17:00:09 +07:00
parent 653c667e57
commit 5380bd109a
8 changed files with 32 additions and 5 deletions

View File

@@ -3,5 +3,10 @@ package types
type Field struct {
Name string
Type string
Medatada []string
Medatada []Medatada
}
type Medatada struct {
Name string
Values []string
}