def test(session, atoms, path):
    print ('got path', path)

from chimera.core import cli, atomspec
test_desc = cli.CmdDesc(required = [('atoms', atomspec.AtomSpecArg), ('path', cli.StringArg)])
cli.register('test', test_desc, test)
