mirror of
https://github.com/Xevion/linkpulse.git
synced 2025-12-11 14:07:48 -06:00
8 lines
133 B
Python
8 lines
133 B
Python
from pydantic import BaseModel
|
|
from datetime import datetime
|
|
|
|
|
|
class SeenIP(BaseModel):
|
|
ip: str
|
|
last_seen: str
|
|
count: int |