23 lines
278 B
Go
23 lines
278 B
Go
package main
|
|
|
|
type submit struct {
|
|
data string
|
|
}
|
|
|
|
type status struct {
|
|
state bool
|
|
lastchange int64
|
|
power int64
|
|
}
|
|
|
|
type event struct {
|
|
title string
|
|
description string
|
|
media []string
|
|
date string
|
|
}
|
|
|
|
type topic struct {
|
|
date string
|
|
days int
|
|
}
|