File size: 261 Bytes
7743c15
 
 
499375e
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from .tasks import TASKS

__all__ = ["ContentGuardEnv", "TASKS"]


def __getattr__(name):
	if name == "ContentGuardEnv":
		from .environment import ContentGuardEnv
		return ContentGuardEnv
	raise AttributeError(f"module '{__name__}' has no attribute '{name}'")