mirror of
https://github.com/wakatime/sublime-wakatime.git
synced 2023-08-10 21:13:02 +03:00
21 lines
392 B
Python
21 lines
392 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
wakatime-cli
|
|
~~~~~~~~~~~~
|
|
|
|
Command-line entry point.
|
|
|
|
:copyright: (c) 2013 Alan Hamlett.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
|
|
from __future__ import print_function
|
|
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
import wakatime
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(wakatime.main(sys.argv))
|