allyinvest/main.go

14 lines
187 B
Go
Raw Normal View History

2019-11-08 04:30:22 +00:00
package main
2019-11-27 13:29:14 +00:00
import (
"fmt"
)
2019-11-08 04:30:22 +00:00
func main() {
// Load our environment variables
var api AllyApi
api.Initialize()
2019-11-08 04:30:22 +00:00
2020-01-20 00:35:36 +00:00
fmt.Printf("Market Clock: %d\n", api.MarketClock().CurrentStatus)
2019-11-08 04:30:22 +00:00
}