7 lines
191 B
Python
7 lines
191 B
Python
from .__interface import Interface
|
|
from .dice_interface import DiceInterface
|
|
from .gaussian_interface import GaussianInterface
|
|
|
|
|
|
__all__ = ["Interface", "DiceInterface", "GaussianInterface"]
|