mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 14:10:05 +00:00
23 lines
392 B
Go
23 lines
392 B
Go
// +build !appengine
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func getHTTPClient(ctx context.Context) *http.Client {
|
|
return &http.Client{}
|
|
}
|
|
|
|
func getContext(r *http.Request) context.Context {
|
|
return r.Context()
|
|
}
|
|
|
|
func main() {
|
|
initializeStorage()
|
|
log.WithError(http.ListenAndServe(cfg.Listen, nil)).Error("HTTP Server exited unexpectedly")
|
|
}
|