UnisKB/apps/common/mixins/api_mixin.py

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