initial commit

This commit is contained in:
2021-12-04 10:15:16 -06:00
commit 8d8f68957f
7 changed files with 496 additions and 0 deletions

14
cmd/tpstate/main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import (
"log"
)
func main() {
initialize()
_, _, err := nextSunriseSunsetTime(config.CalculateDate)
if err != nil {
log.Fatalf("[ERROR] Unable to calculate sunrise/sunset: %v\n", err)
}
}