about summary refs log tree commit diff
path: root/convert.go
blob: 739a6ebde74c1f219b8083a186b291a7514cbb03 (plain)
1
2
3
4
5
6
7
package TLE

// StrinToTLE reads the inputTLE line by line, and inserts it into a TLE
// struct
func StringToTLE(inputTLE string) (TLE, error) {
	return TLE{}, nil
}