Files
Gwendolyn/funcs/swfuncs/__init__.py
Nikolaj Danger 41b048217b 🗃️ Better importing
2020-08-03 17:43:38 +02:00

7 lines
225 B
Python

__doc__ = "Functions related to the Star Wars TTRPG"
__all__ = ["parseChar", "parseRoll", "critRoll", "parseDestiny"]
from .swchar import parseChar
from .swroll import parseRoll, critRoll
from .swdestiny import parseDestiny