Files
chain33-im/comet/nodes.go
2022-03-17 15:55:27 +08:00

8 lines
84 B
Go

package comet
type Node struct {
Current *Channel
Next *Node
Prev *Node
}