File: __init__.py

package info (click to toggle)
python-clevercsv 0.8.3%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,076 kB
  • sloc: python: 6,184; ansic: 870; makefile: 90
file content (8 lines) | stat: -rw-r--r-- 140 bytes parent folder | download
1
2
3
4
5
6
7
8
# -*- coding: utf-8 -*-

from .application import build_application


def main() -> int:
    app = build_application()
    return app.run()