File: __main__.py

package info (click to toggle)
python-cogapp 3.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 388 kB
  • sloc: python: 3,449; makefile: 79
file content (7 lines) | stat: -rw-r--r-- 118 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
"""Make Cog runnable directly from the module."""

import sys

from cogapp import Cog

sys.exit(Cog().main(sys.argv))