mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
🧹 Add the new objects to __init__
This commit is contained in:
parent
14e785dd9b
commit
bcd4647743
1 changed files with 7 additions and 1 deletions
|
@ -1,8 +1,14 @@
|
||||||
from .campaign import *
|
from .campaign import *
|
||||||
from .asynccampaign import *
|
from .asynccampaign import *
|
||||||
|
from .challenge import *
|
||||||
|
from .asyncchallenge import *
|
||||||
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
"Campaign",
|
"Campaign",
|
||||||
"AsyncCampaign"
|
"AsyncCampaign",
|
||||||
|
"Challenge",
|
||||||
|
"TrueChallenge",
|
||||||
|
"AsyncChallenge",
|
||||||
|
"TrueAsyncChallenge",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue