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