|
|
|
@ -10,19 +10,19 @@ from papers import configs
|
|
|
|
|
from papers import commands
|
|
|
|
|
|
|
|
|
|
cmds = collections.OrderedDict([
|
|
|
|
|
('init', commands.init_cmd),
|
|
|
|
|
('add', commands.add_cmd),
|
|
|
|
|
('init', commands.init_cmd),
|
|
|
|
|
('add', commands.add_cmd),
|
|
|
|
|
('add_library', commands.add_library_cmd),
|
|
|
|
|
('import', commands.import_cmd),
|
|
|
|
|
('export', commands.export_cmd),
|
|
|
|
|
('list', commands.list_cmd),
|
|
|
|
|
('edit', commands.edit_cmd),
|
|
|
|
|
('remove', commands.remove_cmd),
|
|
|
|
|
('open', commands.open_cmd),
|
|
|
|
|
('websearch', commands.websearch_cmd),
|
|
|
|
|
('tags', commands.tags_cmd),
|
|
|
|
|
('attach', commands.attach_cmd),
|
|
|
|
|
('update', commands.update_cmd),
|
|
|
|
|
('import', commands.import_cmd),
|
|
|
|
|
('export', commands.export_cmd),
|
|
|
|
|
('list', commands.list_cmd),
|
|
|
|
|
('edit', commands.edit_cmd),
|
|
|
|
|
('remove', commands.remove_cmd),
|
|
|
|
|
('open', commands.open_cmd),
|
|
|
|
|
('websearch', commands.websearch_cmd),
|
|
|
|
|
('tag', commands.tag_cmd),
|
|
|
|
|
('attach', commands.attach_cmd),
|
|
|
|
|
('update', commands.update_cmd),
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
config = configs.read_config()
|
|
|
|
|