blob: 85c7e38c7899c168d1ef2a00d29dd44036e93997 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""
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 *
from submodule import *
from util import Actor
__all__ = [ name for name, obj in locals().items()
if not (name.startswith('_') or inspect.ismodule(obj)) ]
|