blob: 192750e3e87edab56fcb9779f74cb9f3297966be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""
Import all submodules main classes into the package space
"""
import inspect
from base import *
from tag import *
from blob import *
from tree import *
from commit import *
__all__ = [ name for name, obj in locals().items()
if not (name.startswith('_') or inspect.ismodule(obj)) ]
|