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