16 lines
255 B
Python
16 lines
255 B
Python
#!/usr/bin/env python3.6
|
|
|
|
import argparse
|
|
|
|
"""The primary user interface for BDisk. If we are running interactively,
|
|
parse arguments first, then initiate a BDisk session."""
|
|
|
|
def parseArgs():
|
|
pass
|
|
|
|
def run():
|
|
pass
|
|
|
|
def run_interactive():
|
|
pass
|