13 lines
298 B
Python
13 lines
298 B
Python
"""
|
|
Git snapshotting tool
|
|
"""
|
|
from .lethe import (
|
|
main, snap, snap_ref, snap_tree, find_merge_base, deref_symref,
|
|
update_ref, commit_tree, get_tree, get_commit, get_obj,
|
|
shorten_hash, get_root, get_latest_commit,
|
|
)
|
|
|
|
from .VERSION import __version__
|
|
|
|
__author__ = 'Jan Petykeiwicz'
|