You've already forked HeurAMS-Legacy
16 lines
310 B
Python
16 lines
310 B
Python
from .sm2 import SM2Algorithm
|
|
from heurams.services.logger import get_logger
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
__all__ = [
|
|
"SM2Algorithm",
|
|
]
|
|
|
|
algorithms = {
|
|
"SM-2": SM2Algorithm,
|
|
"supermemo2": SM2Algorithm,
|
|
}
|
|
|
|
logger.debug("算法模块初始化完成, 注册的算法: %s", list(algorithms.keys()))
|