mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-07 03:30:06 +01:00
9 lines
217 B
Python
9 lines
217 B
Python
"""
|
|
APIs for handling interfaces to kerncraft, etc.
|
|
|
|
Only the classes below will be exported, so please add new semantic tools to __all__.
|
|
"""
|
|
from .kerncraft_interface import KerncraftAPI
|
|
|
|
__all__ = ['KerncraftAPI']
|