11 lines
191 B
Python
11 lines
191 B
Python
from .ads import ads
|
|
from .._version import *
|
|
|
|
import inspect
|
|
|
|
for name, member in inspect.getmembers(ads):
|
|
if not name.startswith('_'):
|
|
globals()[name] = member
|
|
|
|
del ads
|