9 lines
161 B
Python
9 lines
161 B
Python
from config import SubstrateConfig
|
|
|
|
|
|
class Substrate:
|
|
|
|
@staticmethod
|
|
def setup(state, config: SubstrateConfig = SubstrateConfig()):
|
|
return state
|