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

15 lines
215 B
Python
Raw Permalink Normal View History

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