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