/+junk/brz-gtk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/brz-gtk

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-07 22:07:05 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210107220705-91rr3apmlsgk1pas
Inital code
* I'm trying to figure out what the frying factory I'm doing,
  but I think I can get something up and running...

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python3
 
2
 
 
3
""" Gtk frontend for Breezy
 
4
"""
 
5
 
 
6
import breezy
 
7
from breezy import (
 
8
    branch as _mod_branch,
 
9
    config as _mod_config,
 
10
    lazy_regex,
 
11
)
 
12
 
 
13
from breezy.directory_service import directories
 
14
from breezy.help_topics import topic_registry
 
15
 
 
16
from breezy.commands import plugin_cmds
 
17
 
 
18
_brz_gtk_help = """Handle Breezy tasks using a Gtk frontend
 
19
 
 
20
"""
 
21
topic_registry.register ('brz-gtk', _brz_gtk_help, 'Gtk frontend for Breezy')
 
22
 
 
23
plugin_cmds.register_lazy ('cmd_ghelp', ['ghelp'], __name__ + ".cmds")