13 lines
150 B
Python
13 lines
150 B
Python
from apiflask import Schema
|
|
from apiflask.fields import File
|
|
|
|
|
|
class ImageIn(Schema):
|
|
image = File()
|
|
|
|
|
|
class FileOut(Schema):
|
|
file = File()
|
|
|
|
|