mirror of
https://github.com/Xevion/linkpulse.git
synced 2025-12-06 01:15:30 -06:00
13 lines
196 B
Python
13 lines
196 B
Python
"""responses.py
|
|
|
|
This module contains the response models for the FastAPI application.
|
|
"""
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class SeenIP(BaseModel):
|
|
ip: str
|
|
last_seen: str
|
|
count: int
|