This repository has been archived on 2024-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
spud-py/spud/base.py
Marc Cataford 3dad2071ff
All checks were successful
/ Tests (push) Successful in 52s
/ Static Analysis (push) Successful in 1m4s
refactor: extract configuration handling to own class
2024-04-13 23:17:42 -04:00

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