blob: 76f03e4d84a25cd5d675f2bff9b7a3d7b41a0f34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package model
type Doc []any
type Assignment struct {
Key string
Value []Value
}
type Command struct {
Name string
Arguments []Value
Body Doc
}
type Value any
type Word string
|