about summary refs log tree commit diff stats
path: root/pkgs/by-name/up/update-vim-plugins/update_vim_plugins/__main__.py
blob: a8d9e06f0f80bcf3e2f86dc58d3b9ee4d8608548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from cleo.application import Application

from .update import UpdateCommand
from .cleanup import CleanUpCommand


def main():
    application = Application()
    application.add(UpdateCommand())
    application.add(CleanUpCommand())
    application.run()


if __name__ == "__main__":
    main()