diff options
author | Emile <hanemile@protonmail.com> | 2019-08-18 20:01:45 +0200 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-08-18 20:01:45 +0200 |
commit | 57d37c68b4d0b2081dc1c9177a8fe459a5407ddd (patch) | |
tree | 49470cf05339e38dfb81ad0980214f17e9077b71 | |
parent | e1bb7b5ac5c6c16d18723f9a534ec06cf24da42c (diff) |
go fmt
-rw-r--r-- | TLE.go | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/TLE.go b/TLE.go index 4a4e5b5..376790f 100644 --- a/TLE.go +++ b/TLE.go @@ -5,13 +5,11 @@ Implementing the "Two-line element set (TLE)", a data format encoding orbital el package TLE type TLE struct { - type TitleLine struct { - - } `json: "titleline"` - type TitleLine struct { - - } `json: "lineone"` - type TitleLine struct { - - } `json: "linetwo"` + TitleLine struct { + satname [24]byte `json:"satname"` + } `json:"titleline"` + TitleLine struct { + } `json:"lineone"` + TitleLine struct { + } `json:"linetwo"` } |