What does this statement mean in Go:
Student.bookMap=map[string][]*model.Books{}
Where Student
is:
type Student struct{
bookMap map[string][]*model.Books
}
and we have a model package
package model
type Books struct {
bookName string `db:"Name"`
bookAuthor string `db:"Author"`
}