X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=E2Manager%2Fhandlers%2Fhttpmsghandlers%2Frequest_handler.go;h=e37adb764f68b95bf46071ff22de237155dd8dc3;hb=f1035e286c9cdb58fd786daf4d6c5cc9bea45a37;hp=c5c84ecb77d2fb956c437b700721d9d56f5f9d48;hpb=1ec13d4076e7c7abefac6176462c1fee31229213;p=ric-plt%2Fe2mgr.git diff --git a/E2Manager/handlers/httpmsghandlers/request_handler.go b/E2Manager/handlers/httpmsghandlers/request_handler.go index c5c84ec..e37adb7 100644 --- a/E2Manager/handlers/httpmsghandlers/request_handler.go +++ b/E2Manager/handlers/httpmsghandlers/request_handler.go @@ -13,15 +13,16 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -// + +// This source code is part of the near-RT RIC (RAN Intelligent Controller) +// platform project (RICP). package httpmsghandlers import ( - "e2mgr/logger" "e2mgr/models" ) type RequestHandler interface { - Handle(logger *logger.Logger, request models.Request) error + Handle(request models.Request) (models.IResponse, error) }