forked from sig_core/toolkit
nazunalika
4f9bfd44a0
Add better syncing for current bash scripts (thanks pgreco) Continued python scripts, creating classes for local module imports, with some inspiration coming from cobbler
13 lines
137 B
Python
13 lines
137 B
Python
from .check import (
|
|
Checks,
|
|
)
|
|
|
|
from .dnf_utils import (
|
|
RepoSync,
|
|
)
|
|
|
|
__all__ = [
|
|
'Checks',
|
|
'RepoSync'
|
|
]
|