mirror of
https://github.com/wakatime/sublime-wakatime.git
synced 2023-08-10 21:13:02 +03:00
18 lines
263 B
Python
18 lines
263 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
wakatime
|
||
|
~~~~~~~~
|
||
|
|
||
|
Common interface to the WakaTime api.
|
||
|
http://wakatime.com
|
||
|
|
||
|
:copyright: (c) 2013 Alan Hamlett.
|
||
|
:license: BSD, see LICENSE for more details.
|
||
|
"""
|
||
|
|
||
|
|
||
|
__all__ = ['main']
|
||
|
|
||
|
|
||
|
from .main import execute
|