package main import ( "log" "git.netflux.io/rob/elon-eats-my-tweets/config" "git.netflux.io/rob/elon-eats-my-tweets/httpserver" ) func main() { c := config.NewFromEnv() log.Fatal(httpserver.Start(c)) }