summaryrefslogtreecommitdiffhomepage
path: root/models.go
blob: d230525b689c8344c7f7837bdc7b7c7c8e63fc22 (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

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

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