1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 03:24:20 +00:00

🧹 Add the new objects to __init__

This commit is contained in:
Steffo 2020-10-08 18:44:28 +02:00
parent 14e785dd9b
commit bcd4647743

View file

@ -1,8 +1,14 @@
from .campaign import *
from .asynccampaign import *
from .challenge import *
from .asyncchallenge import *
__all__ = (
"Campaign",
"AsyncCampaign"
"AsyncCampaign",
"Challenge",
"TrueChallenge",
"AsyncChallenge",
"TrueAsyncChallenge",
)