blob: 717fa808ec6600748e2a7d040a109b304ba54fe0 (
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)) ]
|