diff options
| author | Emile <hanemile@protonmail.com> | 2019-08-18 20:51:05 +0200 | 
|---|---|---|
| committer | Emile <hanemile@protonmail.com> | 2019-08-18 20:51:05 +0200 | 
| commit | 4e0dc88f28f7190a11d54835d401d8cfd6305daf (patch) | |
| tree | 85bdf39422cf05627bebbbb6df71ea1d555d4841 | |
| parent | f583a351fedd769570808ce6a80842f20427dec6 (diff) | |
added a function getting a string and returning a tlebytes object
| -rw-r--r-- | TLE.go | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/TLE.go b/TLE.go index 6a201ef..6815b0f 100644 --- a/TLE.go +++ b/TLE.go @@ -42,3 +42,7 @@ type tlebytes struct { Checksum [1]byte `json:"checksum"` } `json:"linetwo"` } + +func TLEfromString(TLE string) tlebytes { + return tlebytes{} +}  | 
