17 lines
248 B
Python
17 lines
248 B
Python
|
# standard imports
|
||
|
import logging
|
||
|
|
||
|
logg = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
def process_args(argparser):
|
||
|
argparser.add_argument('directory', help='directory to initialize')
|
||
|
|
||
|
|
||
|
def validate_args(args):
|
||
|
pass
|
||
|
|
||
|
|
||
|
def execute(config, eargs):
|
||
|
pass
|