mirror of
https://github.com/Dasharo/edk2.git
synced 2026-06-13 10:16:24 -07:00
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()
|