12 lines
148 B
Python
12 lines
148 B
Python
|
|
from api import ClockifyAPI
|
|
from config import config
|
|
|
|
|
|
def main():
|
|
ClockifyAPI(config.CLOCKIFY_TOKEN)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|