split in multiple small files

This commit is contained in:
Martin Angers
2012-08-29 21:14:23 -04:00
parent de2aae3fa2
commit f94c18dc61
12 changed files with 306 additions and 256 deletions

10
selection.go Normal file
View File

@@ -0,0 +1,10 @@
package goquery
import (
"exp/html"
)
type Selection struct {
Nodes []*html.Node
document *Document
}