mirror of
https://github.com/kennethreitz-archive/python_project.git
synced 2026-06-05 23:50:19 +00:00
15 lines
145 B
Python
15 lines
145 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
""" Example -- CLI Dispatch
|
|
"""
|
|
|
|
|
|
from core import *
|
|
|
|
|
|
|
|
def start():
|
|
"""Example Dipatch"""
|
|
|
|
print('Example executed')
|