aboutsummaryrefslogtreecommitdiff
path: root/appservice/inthttp/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'appservice/inthttp/server.go')
-rw-r--r--appservice/inthttp/server.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/appservice/inthttp/server.go b/appservice/inthttp/server.go
deleted file mode 100644
index b70fad67..00000000
--- a/appservice/inthttp/server.go
+++ /dev/null
@@ -1,36 +0,0 @@
-package inthttp
-
-import (
- "github.com/gorilla/mux"
-
- "github.com/matrix-org/dendrite/appservice/api"
- "github.com/matrix-org/dendrite/internal/httputil"
-)
-
-// AddRoutes adds the AppServiceQueryAPI handlers to the http.ServeMux.
-func AddRoutes(a api.AppServiceInternalAPI, internalAPIMux *mux.Router, enableMetrics bool) {
- internalAPIMux.Handle(
- AppServiceRoomAliasExistsPath,
- httputil.MakeInternalRPCAPI("AppserviceRoomAliasExists", enableMetrics, a.RoomAliasExists),
- )
-
- internalAPIMux.Handle(
- AppServiceUserIDExistsPath,
- httputil.MakeInternalRPCAPI("AppserviceUserIDExists", enableMetrics, a.UserIDExists),
- )
-
- internalAPIMux.Handle(
- AppServiceProtocolsPath,
- httputil.MakeInternalRPCAPI("AppserviceProtocols", enableMetrics, a.Protocols),
- )
-
- internalAPIMux.Handle(
- AppServiceLocationsPath,
- httputil.MakeInternalRPCAPI("AppserviceLocations", enableMetrics, a.Locations),
- )
-
- internalAPIMux.Handle(
- AppServiceUserPath,
- httputil.MakeInternalRPCAPI("AppserviceUser", enableMetrics, a.User),
- )
-}