13 lines
229 B
Python
13 lines
229 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import common
|
||
|
|
||
|
for file in (
|
||
|
"Application/MemWeb",
|
||
|
):
|
||
|
error = common.compile_file("/" + file + ".py")
|
||
|
|
||
|
if "MemWeb" not in globals():
|
||
|
class MemWeb:pass
|
||
|
mem_web = MemWeb()
|