17 lines
397 B
Python
17 lines
397 B
Python
from ScEpTIC.config.base_config import ScEpTICBaseConfig
|
|
|
|
class MementosMemoryMapConfig(ScEpTICBaseConfig):
|
|
"""
|
|
Configuration for the Mementos Memory Map Transformation
|
|
"""
|
|
_config_domain = {
|
|
}
|
|
|
|
def __init__(self, main_config):
|
|
super().__init__(main_config)
|
|
|
|
|
|
# Returns the configuration
|
|
def get_config(main_config):
|
|
return MementosMemoryMapConfig(main_config)
|