16 lines
359 B
Go
16 lines
359 B
Go
|
package srarchive
|
||
|
|
||
|
import "net/url"
|
||
|
|
||
|
type Index struct {
|
||
|
Announcements []string `json:"announcements"`
|
||
|
IDs []EventReference `json:"ids"`
|
||
|
Servers map[string]*url.URL `json:"servers"`
|
||
|
}
|
||
|
|
||
|
type EventReference struct {
|
||
|
ID string `json:"id"`
|
||
|
Title string `json:"title"`
|
||
|
LongTitle string `json:"longTitle,omitempty"`
|
||
|
}
|