blob: fd791a84c82c82c3e3c3a6a7ba85c7131cc72222 [file] [log] [blame]
Matteo Scandolod2044a42017-08-07 16:08:28 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Zack Williams045b63d2019-01-22 16:30:57 -070015from xosapi.orm import register_convenience_wrapper
Matteo Scandolo78937592018-04-05 11:34:57 -070016from xosapi.convenience.serviceinstance import ORMWrapperServiceInstance
Scott Baker89c9e6e2017-03-14 17:47:32 -070017
Zack Williams045b63d2019-01-22 16:30:57 -070018
Matteo Scandolo78937592018-04-05 11:34:57 -070019class ORMWrapperONOSApp(ORMWrapperServiceInstance):
Scott Baker89c9e6e2017-03-14 17:47:32 -070020 pass
21
Zack Williams045b63d2019-01-22 16:30:57 -070022
Scott Baker89c9e6e2017-03-14 17:47:32 -070023register_convenience_wrapper("ONOSApp", ORMWrapperONOSApp)