summaryrefslogtreecommitdiffhomepage
path: root/models.go
blob: 37059dcdbb6f3c55ed7918dbf8ffc70e168b59bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main

import (
	"time"
)

type Killmail struct {
	Id   string `json:"id"`
	Hash string `json:"hash"`
}

type Wreck struct {
	Killmail
	Team string `json:"team"`
}

type Battle struct {
	Id   string
	Date time.Time
}