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

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()