Added V0 Registry API
[multicloud/azure.git] / azure / multicloud_azure / scripts / api.py
1 #    Copyright (c) 2018 Amdocs
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 import eventlet
15 eventlet.monkey_patch()
16
17 import os # noqa
18 from oslo_config import cfg # noqa
19 from oslo_service import service # noqa
20 import sys # noqa
21 # FIXME: Since there is no explicitly setup process for the project. Hack the
22 # python here.
23 sys.path.append(os.path.abspath('.'))
24
25 from multicloud_azure.api_v2 import service as api_service # noqa
26
27
28 def main():
29     try:
30         api_server = api_service.WSGIService()
31         launcher = service.launch(cfg.CONF,
32                                   api_server,
33                                   workers=api_server.workers)
34         launcher.wait()
35     except RuntimeError as excp:
36         sys.stderr.write("ERROR: %s\n" % excp)
37         sys.exit(1)
38
39
40 if __name__ == '__main__':
41     main()