nateraw commited on
Commit
961717a
1 Parent(s): ba63b16

Create model.py

Browse files
Files changed (1) hide show
  1. model.py +6 -0
model.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ class MessageModel:
2
+ def __init__(self, msg='hello, world'):
3
+ self.msg = msg
4
+
5
+ def __call__(self):
6
+ print(self.msg)