update/software/software/api/controllers/v1/software.py

20 lines
425 B
Python

"""
Copyright (c) 2023-2024 Wind River Systems, Inc.
SPDX-License-Identifier: Apache-2.0
"""
import logging
from pecan import expose
from pecan.rest import RestController
from software.software_controller import sc
LOG = logging.getLogger('main_logger')
class SoftwareAPIController(RestController):
@expose(method='GET', template='json')
def in_sync_controller(self):
return sc.in_sync_controller_api()