15 lines
379 B
Python
Executable file
15 lines
379 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from realms.commands import cli
|
|
|
|
if __name__ == '__main__':
|
|
print
|
|
print "----------------------------------"
|
|
print "This script is for development.\n" \
|
|
"If you installed via pip, " \
|
|
"you should have realms-wiki in your PATH that should be used instead."
|
|
print "----------------------------------"
|
|
print
|
|
|
|
cli()
|