func Sections()

in toutoumomoma.go [257:264]


func Sections(path string) ([]Section, error) {
	f, err := Open(path)
	if err != nil {
		return nil, err
	}
	defer f.Close()
	return f.Sections()
}