8 lines
151 B
Python
8 lines
151 B
Python
|
"""instantiate global BulletinBoard object"""
|
||
|
|
||
|
__all__ = ['bulletinBoard']
|
||
|
|
||
|
from . import BulletinBoard
|
||
|
|
||
|
bulletinBoard = BulletinBoard.BulletinBoard()
|