mirror of
https://github.com/evennia/evennia.git
synced 2026-04-01 21:47:17 +02:00
10 lines
210 B
Python
Executable file
10 lines
210 B
Python
Executable file
#! /usr/bin/python2.7
|
|
"""
|
|
Linux launcher
|
|
|
|
This is copied directly into the python bin directory and makes the
|
|
'evennia' program available on $PATH.
|
|
"""
|
|
|
|
from evennia.server.evennia_launcher import main
|
|
main()
|