Skip to content

Commit

Permalink
added headers 3
Browse files Browse the repository at this point in the history
  • Loading branch information
s-m-e committed Aug 5, 2019
1 parent 1fa2868 commit 039a890
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
29 changes: 29 additions & 0 deletions src/abgleich/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
# -*- coding: utf-8 -*-

"""
ABGLEICH
zfs sync tool
https://github.com/pleiszenburg/abgleich
src/abgleich/cli/__init__.py: CLI package root
Copyright (C) 2019 Sebastian M. Ernst <[email protected]>
<LICENSE_BLOCK>
The contents of this file are subject to the GNU Lesser General Public License
Version 2.1 ("LGPL" or "License"). You may not use this file except in
compliance with the License. You may obtain a copy of the License at
https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt
https://github.com/pleiszenburg/abgleich/blob/master/LICENSE
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
specific language governing rights and limitations under the License.
</LICENSE_BLOCK>
"""


# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# IMPORT
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

from ._main_ import cli
27 changes: 26 additions & 1 deletion src/abgleich/cli/_main_.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# -*- coding: utf-8 -*-

"""
ABGLEICH
zfs sync tool
https://github.com/pleiszenburg/abgleich
src/abgleich/cli/_main_.py: CLI auto-detection
Copyright (C) 2019 Sebastian M. Ernst <[email protected]>
<LICENSE_BLOCK>
The contents of this file are subject to the GNU Lesser General Public License
Version 2.1 ("LGPL" or "License"). You may not use this file except in
compliance with the License. You may obtain a copy of the License at
https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt
https://github.com/pleiszenburg/abgleich/blob/master/LICENSE
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
specific language governing rights and limitations under the License.
</LICENSE_BLOCK>
"""


# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# IMPORT
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Expand All @@ -26,6 +51,6 @@ def _add_commands(ctx):

@click.group()
def cli():
"""abgleich, btrfs and zfs sync tool"""
"""abgleich, zfs sync tool"""

_add_commands(cli)

0 comments on commit 039a890

Please sign in to comment.