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
|
||||
Depth int
|
||||
Active bool
|
||||
In bool // one level in depth
|
||||
Out bool // one level out depth
|
||||
In []bool // one level in depth
|
||||
Out []bool // one level out depth
|
||||
}
|
||||
|
||||
type readData struct {
|
||||
|
|
Reference in a new issue