In and Out have to be arrays
This commit is contained in:
parent
9a3e50b193
commit
2febea7d90
1 changed files with 2 additions and 2 deletions
|
@ -16,8 +16,8 @@ type chapter struct {
|
||||||
Link string
|
Link string
|
||||||
Depth int
|
Depth int
|
||||||
Active bool
|
Active bool
|
||||||
In bool // one level in depth
|
In []bool // one level in depth
|
||||||
Out bool // one level out depth
|
Out []bool // one level out depth
|
||||||
}
|
}
|
||||||
|
|
||||||
type readData struct {
|
type readData struct {
|
||||||
|
|
Reference in a new issue