mirror of https://github.com/acidanthera/audk.git
11 lines
161 B
Python
11 lines
161 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
"""CGI test 3 (persistent data)."""
|
||
|
|
||
|
import cgitb; cgitb.enable()
|
||
|
|
||
|
from wiki import main
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|