X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=E2Manager%2Fhandlers%2Fhttpmsghandlers%2Frequest_handler.go;h=5d1f6cf833dd09eee47fccc3bbb62fe543087a98;hb=b6c5a882f986ed2d6440cf9be83d69740179c53d;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..5d1f6cf 100644 --- a/E2Manager/handlers/httpmsghandlers/request_handler.go +++ b/E2Manager/handlers/httpmsghandlers/request_handler.go @@ -13,15 +13,17 @@ // 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) }