mirror of
https://github.com/Team-Resurgent/xbmc4xbox-redux.git
synced 2026-08-15 20:18:49 -07:00
11 lines
151 B
Python
11 lines
151 B
Python
#!/usr/bin/env python
|
|
|
|
"""CGI test 3 (persistent data)."""
|
|
|
|
import cgitb; cgitb.enable()
|
|
|
|
from wiki import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|