mirror of
https://github.com/kennethreitz-archive/plac.git
synced 2026-06-05 07:36:12 +00:00
8 lines
149 B
Python
8 lines
149 B
Python
class Main(object):
|
|
commands = ['do']
|
|
def do(self, x):
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
import plac; plac.Interpreter.call(Main)
|