10 lines
383 B
Python
10 lines
383 B
Python
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright (c) 2024 Antonio Niño Díaz <antonio_nd@outlook.com>
|
|
|
|
from .architectds import (Arm9Binary, Arm7Binary, TeakBinary, NitroFS, FatFS,
|
|
NdsRom, AUTHOR_STRING, VERSION_STRING)
|
|
|
|
__all__ = ['Arm9Binary', 'Arm7Binary', 'TeakBinary', 'NitroFS', 'FatFS', 'NdsRom']
|
|
__author__ = AUTHOR_STRING
|
|
__version__ = VERSION_STRING
|