commit | 02eb6b0d18297b6fc371d035110dc99ee9b2a5a3 | [log] [tgz] |
---|---|---|
author | Rich Lane <rich.lane@bigswitch.com> | Fri Jan 11 08:08:37 2013 -0800 |
committer | Rich Lane <rich.lane@bigswitch.com> | Fri Jan 11 08:20:20 2013 -0800 |
tree | 2216043104e9de51f60eed0a612fae8f207aca6f | |
parent | f9aa5022c4707485455a9476912ea13e20e6baac [diff] [blame] |
of12: simplify importing
diff --git a/src/python/of12/__init__.py b/src/python/of12/__init__.py index e69de29..36dd8fa 100644 --- a/src/python/of12/__init__.py +++ b/src/python/of12/__init__.py
@@ -0,0 +1,10 @@ +# Allow accessing constants through the top-level module +from cstruct import * + +# Allow accessing submodules without additional imports +import action +import bucket +import instruction +import match +import message +import parse