UnisKB/apps/common/mixins/api_mixin.py

25 lines
406 B
Python
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# coding=utf-8
"""
@project: smart-doc
@Author
@file api_mixin.py
@date2023/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