type Movie struct {
ID bson.ObjectId `bson:"_id" json:"id"`
Name string `bson:"name" json:"name"`
ThubImage string `bson:"thumb_image" json:"thumb_image"`
Description string `bson:"description" json:"description"`
Active bool `bson:"active" json:"active"`
}