Как получить доступ к полям структур для создания двух переменных title, message?
package main
import (
"math/rand"
"notify/test"
)
type Notification struct {
title string
message string
}
var notifications []Notification = []Notification{Notification{"Title1", "Msg1"}, Notification{"Title2", "Msg2"}}
func main() {
notification := notifications[rand.Intn(len(notifications))] // Здесь должно быть title, message := notifications[1]
notify.SendNotification(notification.title, notification.message)
//notify2.SendHello()
}