Index

s3-bsync / master

Bidirectional syncing tool to sync local filesystem directories with S3 buckets. (Incomplete)

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
622 Oct 2021 11:139613f30Update Python project toolsJosh Stockin182G

Blob @ s3-bsync / src / cli.py

application/x-python520 bytesdownload raw
1# s3-bsync Copyright (c) 2021 Joshua Stockin
2# <https://joshstock.in>
3# <https://git.joshstock.in/s3-bsync>
4#
5# This software is licensed and distributed under the terms of the MIT License.
6# See the MIT License in the LICENSE file of this project's root folder.
7#
8# This comment block and its contents, including this disclaimer, MUST be
9# preserved in all copies or distributions of this software's source.
10
11import logging
12
13logger = logging.getLogger(__name__)
14
15__all__ = ["cli"]
16
17
18def cli():
19 logger.debug("Test")
20