mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
22 lines
364 B
Python
22 lines
364 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):
|
||
|
||
def get_request_params_api(self):
|
||
pass
|
||
|
||
def get_request_body_api(self):
|
||
pass
|
||
|
||
def get_response_body_api(self):
|
||
pass
|