7 lines
139 B
Python
7 lines
139 B
Python
from __future__ import annotations
|
|
|
|
from .base import TestProject
|
|
from .c import new_c_project
|
|
|
|
__all__ = ("TestProject", "new_c_project")
|