9 lines
168 B
Python
9 lines
168 B
Python
"""Command implementations for Skywipe CLI."""
|
|
|
|
from skywipe.configuration import Configuration
|
|
|
|
|
|
def run_configure():
|
|
config = Configuration()
|
|
config.create()
|