UnisKB/apps/system_manage/api/system.py

23 lines
531 B
Python
Raw Normal View History

2025-06-04 09:16:35 +00:00
# coding=utf-8
"""
@project: MaxKB
@Author虎虎
@file system_setting.py
@date2025/6/4 16:34
@desc:
"""
from common.mixins.api_mixin import APIMixin
from common.result import ResultSerializer
from system_manage.serializers.system import SystemProfileResponseSerializer
class SystemProfileResult(ResultSerializer):
def get_data(self):
return SystemProfileResponseSerializer()
class SystemProfileAPI(APIMixin):
@staticmethod
def get_response():
return SystemProfileResult