mirror of
https://github.com/kennethreitz-archive/backitup.git
synced 2026-06-05 23:40:17 +00:00
11 lines
166 B
Python
11 lines
166 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import plac
|
|
|
|
def start():
|
|
"""Dispatch backitup commandline application."""
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
start() |