about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-08-18 20:51:05 +0200
committerEmile <hanemile@protonmail.com>2019-08-18 20:51:05 +0200
commit4e0dc88f28f7190a11d54835d401d8cfd6305daf (patch)
tree85bdf39422cf05627bebbbb6df71ea1d555d4841
parentf583a351fedd769570808ce6a80842f20427dec6 (diff)
added a function getting a string and returning a tlebytes object
-rw-r--r--TLE.go4
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{}
+}