13 lines
268 B
Python
13 lines
268 B
Python
|
def english_standard():
|
||
|
from .EnglishStandard import EnglishStandard
|
||
|
return EnglishStandard()
|
||
|
|
||
|
def english_cowboy():
|
||
|
from .EnglishCowboy import EnglishCowboy
|
||
|
return EnglishCowboy()
|
||
|
|
||
|
|
||
|
def spanish():
|
||
|
from .Spanish import Spanish
|
||
|
return Spanish()
|