8 lines
174 B
Python
8 lines
174 B
Python
from smnp.environment.environment import Environment
|
|
from smnp.module import functions, methods
|
|
|
|
|
|
def createEnvironment():
|
|
return Environment([{}], functions, methods)
|
|
|