8 lines
190 B
Python
8 lines
190 B
Python
"""Module for setting up system and respective bench configurations"""
|
|
|
|
|
|
def env():
|
|
from jinja2 import Environment, PackageLoader
|
|
|
|
return Environment(loader=PackageLoader("bench.config"))
|