File: __main__.py

package info (click to toggle)
python-keystonemiddleware 10.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,308 kB
  • sloc: python: 10,071; makefile: 93; sh: 2
file content (8 lines) | stat: -rw-r--r-- 168 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
from keystonemiddleware.echo import service


try:
    service.EchoService()
except KeyboardInterrupt:  # nosec
    # The user wants this application to exit.
    pass