diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-09 20:26:39 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-09 20:26:39 -0700 |
commit | 9e6cfdf9668157ec7ff566c670ce293b18d2bc83 (patch) | |
tree | 52c00b694b5ea63705f7608aa02eaf7ba3ec51d4 /golang/restapi/server.go | |
parent | c28602eba84c8c5ecfd267187ff103bb5e9d2091 (diff) | |
download | fatcat-9e6cfdf9668157ec7ff566c670ce293b18d2bc83.tar.gz fatcat-9e6cfdf9668157ec7ff566c670ce293b18d2bc83.zip |
basic sentry; middleware; clacks-overhead
Diffstat (limited to 'golang/restapi/server.go')
-rw-r--r-- | golang/restapi/server.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/golang/restapi/server.go b/golang/restapi/server.go index a11c94c6..6fb4f3b9 100644 --- a/golang/restapi/server.go +++ b/golang/restapi/server.go @@ -15,11 +15,11 @@ import ( "sync/atomic" "time" - log "github.com/sirupsen/logrus" "github.com/go-openapi/runtime/flagext" "github.com/go-openapi/swag" flags "github.com/jessevdk/go-flags" graceful "github.com/tylerb/graceful" + log "github.com/sirupsen/logrus" // manual hack for now (bnewbold) "git.archive.org/bnewbold/fatcat/golang/restapi/operations" ) @@ -35,7 +35,6 @@ var defaultSchemes []string func init() { defaultSchemes = []string{ schemeHTTP, - schemeHTTPS, } } |