dummy / model.py
nateraw's picture
Create model.py
961717a
raw
history blame
136 Bytes
class MessageModel:
def __init__(self, msg='hello, world'):
self.msg = msg
def __call__(self):
print(self.msg)