MaxKB/apps/common/mixins/api_mixin.py
2023-09-15 17:40:35 +08:00

22 lines
364 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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):
def get_request_params_api(self):
pass
def get_request_body_api(self):
pass
def get_response_body_api(self):
pass