From d6226a4a928a386a29e173f7516e3c3d09681dc0 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 24 Apr 2021 02:49:54 +0200 Subject: Moved storage handling to another file --- models.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'models.go') diff --git a/models.go b/models.go index d230525..37059dc 100644 --- a/models.go +++ b/models.go @@ -1,5 +1,9 @@ package main +import ( + "time" +) + type Killmail struct { Id string `json:"id"` Hash string `json:"hash"` @@ -9,3 +13,8 @@ type Wreck struct { Killmail Team string `json:"team"` } + +type Battle struct { + Id string + Date time.Time +} -- cgit v1.1