new package

This commit is contained in:
Michael Woods
2025-01-08 14:17:04 -05:00
parent 74e56f4573
commit 34f3b4242e
2 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
"""Package runs arbitrary commands/jobs via different mechanisms."""
from typing import Union,Optional,Iterable,Self
class Runner:
"""Abstract class to take arguments and run a job and track the status and results."""
def __init__(self, args: Iterable[str], ):
pass

View File

@@ -0,0 +1 @@
"""Uses podman to run jobs in containers."