mirror of
https://github.com/RetroZelda/beacon-snatch.git
synced 2026-06-14 20:36:54 +00:00
Initial Submit
This commit is contained in:
17
beacon_snatch/__init__.py
Normal file
17
beacon_snatch/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
import logging
|
||||
|
||||
from . import helpers
|
||||
from .series import BeaconSeries
|
||||
from .content import BeaconContent
|
||||
from .stream import BeaconStreamInfo
|
||||
from .authentication import BeaconAuthentication
|
||||
|
||||
|
||||
__all__ = ["BeaconSeries",
|
||||
"BeaconContent",
|
||||
"BeaconStreamInfo",
|
||||
"BeaconAuthentication"]
|
||||
|
||||
logging.addLevelName(helpers.LOG_VERBOSE, helpers.LOG_VERBOSE_NAME)
|
||||
logging.basicConfig(level=logging.INFO, format='%(levelname)s: %(message)s')
|
||||
Reference in New Issue
Block a user