ISCE_INSAR/examples/applications/greeter3/greetings/greetings.py

13 lines
268 B
Python
Raw Normal View History

2019-01-16 19:40:08 +00:00
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()