mirror of
https://github.com/leon-ai/leon.git
synced 2024-12-21 07:41:39 +03:00
10 lines
225 B
Python
10 lines
225 B
Python
#!/usr/bin/env python
|
|
# -*- coding:utf-8 -*-
|
|
|
|
import utils
|
|
|
|
def meaningoflife(string, entities):
|
|
"""Leon says what's the meaning of life"""
|
|
|
|
return utils.output('end', 'meaning_of_life', utils.translate('meaning_of_life'))
|