Files
slop-farmer-server/slopserver/test/test_api.py
2025-11-26 20:44:02 +00:00

5 lines
158 B
Python

from fastapi import FastAPI
from fastapi.testclient import TestClient
from slopserver.server import app as slopserver_app
client = TestClient(slopserver_app)