summaryrefslogtreecommitdiffstats
path: root/pytzdata/commands/app.py
blob: 0d09a43cccac66a53ce9db90ca4c94c6bbf2371c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- coding: utf-8 -*-

from cleo import Application

from .make import MakeCommand
from .zones import ZonesCommand

app = Application('pytzdata')

app.add(MakeCommand())
app.add(ZonesCommand())


if __name__ == '__main__':
    app.run()