This repository has been archived on 2022-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
elon-eats-my-tweets/main.go

15 lines
211 B
Go

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))
}