diff options
author | Emile <hanemile@protonmail.com> | 2019-08-19 15:07:11 +0200 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-08-19 15:07:11 +0200 |
commit | c701a93258287a358408f77bc17f3067a0f2aeb9 (patch) | |
tree | f5df2f224ce804c25e9f973878e56c7483b5ca9d | |
parent | a877acbd7dd80e1733809f472699aacf6845c131 (diff) |
commented the TitleLine Struct
-rw-r--r-- | TLE.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/TLE.go b/TLE.go index 6929537..7bdb0f0 100644 --- a/TLE.go +++ b/TLE.go @@ -16,6 +16,8 @@ func NewTLE(titleLine TitleLine, lineOne LineOne, lineTwo LineTwo) *TLE { return &TLE{TitleLine: titleLine, LineOne: lineOne, LineTwo: lineTwo} } +// TitleLine defines the first line in the the TLE +// It contains the name of the satellite type TitleLine struct { Satname string `json:"satname"` } |