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