11 lines
245 B
Python
11 lines
245 B
Python
|
__all__ = []
|
||
|
|
||
|
def export(defn):
|
||
|
"""Decorator to explicitly mark functions that are exposed in a lib."""
|
||
|
globals()[defn.__name__] = defn
|
||
|
__all__.append(defn.__name__)
|
||
|
return defn
|
||
|
|
||
|
from . import dbcommands
|
||
|
from . import iocommands
|