diff --git a/src/github.com/matrix-org/dendrite/clientapi/readers/sync.go b/src/github.com/matrix-org/dendrite/clientapi/readers/sync.go deleted file mode 100644 index c4b3a2474..000000000 --- a/src/github.com/matrix-org/dendrite/clientapi/readers/sync.go +++ /dev/null @@ -1,20 +0,0 @@ -package readers - -import ( - "net/http" - - "github.com/matrix-org/dendrite/clientapi/auth" - "github.com/matrix-org/util" -) - -// Sync implements /sync -func Sync(req *http.Request) util.JSONResponse { - logger := util.GetLogger(req.Context()) - userID, resErr := auth.VerifyAccessToken(req) - if resErr != nil { - return *resErr - } - - logger.WithField("userID", userID).Info("Doing stuff...") - return util.MessageResponse(404, "Not implemented yet") -}