mirror of
https://github.com/kennethreitz-archive/python_project.git
synced 2026-06-05 15:40:19 +00:00
12 lines
161 B
Python
Executable File
12 lines
161 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Example Runner/Dipatch"""
|
|
|
|
import example
|
|
import example.cli
|
|
|
|
|
|
if __name__ == '__main__':
|
|
example.cli.start()
|