initial import (Boeing r1752, NRL r878)
This commit is contained in:
commit
f8f46d28be
394 changed files with 99738 additions and 0 deletions
23
daemon/core/__init__.py
Normal file
23
daemon/core/__init__.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Copyright (c)2010-2012 the Boeing Company.
|
||||
# See the LICENSE file included in this distribution.
|
||||
|
||||
"""core
|
||||
|
||||
Top-level Python package containing CORE components.
|
||||
|
||||
See http://cs.itd.nrl.navy.mil/work/core/ and
|
||||
http://code.google.com/p/coreemu/ for more information on CORE.
|
||||
|
||||
Pieces can be imported individually, for example
|
||||
|
||||
import core.netns.vnode
|
||||
|
||||
or everything listed in __all__ can be imported using
|
||||
|
||||
from core import *
|
||||
"""
|
||||
|
||||
__all__ = []
|
||||
|
||||
# Automatically import all add-ons listed in addons.__all__
|
||||
from addons import *
|
Loading…
Add table
Add a link
Reference in a new issue