rana-cli/wakatime-cli.py

21 lines
392 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""
wakatime-cli
~~~~~~~~~~~~
2013-12-13 14:09:09 +00:00
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))