fehlerbehebung
This commit is contained in:
parent
46640f21f9
commit
49205f06c5
|
@ -9,7 +9,7 @@ func getEvents() []event {
|
|||
|
||||
for rows.Next() {
|
||||
Event := new(event)
|
||||
err := rows.Scan(&Event.date, &Event.description, &Event.media, &Event.title)
|
||||
err := rows.Scan(&Event.id, &Event.title, &Event.description, &Event.media, &Event.date)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
|
|
@ -11,9 +11,10 @@ type status struct {
|
|||
}
|
||||
|
||||
type event struct {
|
||||
id int
|
||||
title string
|
||||
description string
|
||||
media []string
|
||||
media string
|
||||
date string
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue