예제 #1
0
파일: bottly.py 프로젝트: nixheads/bottly
 def mail(self, destination, message, user):
     db = self.db
     database.save_tell(db, destination, message, user)
예제 #2
0
파일: bottly.py 프로젝트: nixheads/bottly
 def mail(self, destination, message, user):
     db = self.db
     database.save_tell(db, destination, message, user)
예제 #3
0
파일: main.py 프로젝트: kekler/bottly
 def mail(self, destination, message, user):
     """
     mail stores a 'message' (tell) in the database so that 'user'
     can read it later via the 'checkmail' command (Bottly.checkmail).
     """
     database.save_tell(self.db, destination, message, user)