mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
25 lines
406 B
Python
25 lines
406 B
Python
# coding=utf-8
|
||
"""
|
||
@project: smart-doc
|
||
@Author:虎
|
||
@file: api_mixin.py
|
||
@date:2023/9/14 17:50
|
||
@desc:
|
||
"""
|
||
from rest_framework import serializers
|
||
|
||
|
||
class ApiMixin(serializers.Serializer):
|
||
|
||
@staticmethod
|
||
def get_request_params_api():
|
||
pass
|
||
|
||
@staticmethod
|
||
def get_request_body_api():
|
||
pass
|
||
|
||
@staticmethod
|
||
def get_response_body_api():
|
||
pass
|