mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-05 19:48:22 +00:00
11 lines
249 B
Python
11 lines
249 B
Python
|
|
# Copyright (c) Twisted Matrix Laboratories.
|
||
|
|
# See LICENSE for details.
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
from pkg_resources import load_entry_point
|
||
|
|
import sys
|
||
|
|
|
||
|
|
sys.exit(
|
||
|
|
load_entry_point('Twisted', 'console_scripts', 'trial')()
|
||
|
|
)
|