14 lines
215 B
Python
14 lines
215 B
Python
"""
|
|
Models and datastructures
|
|
"""
|
|
|
|
import pydantic
|
|
|
|
|
|
class ContainerMetadata(pydantic.BaseModel):
|
|
"""Metadata pulled from container status check"""
|
|
|
|
name: str
|
|
status: str
|
|
image: str
|
|
started: int
|