5 lines
79 B
Python
5 lines
79 B
Python
|
from fastapi import FastAPI
|
||
|
from nsfw_detector import predict
|
||
|
|
||
|
app = FastAPI()
|