14 lines
196 B
Python
14 lines
196 B
Python
import utils.intents_utils
|
|
|
|
|
|
def what_time_is_it():
|
|
return ""
|
|
|
|
|
|
def what_day_is_it():
|
|
return ""
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print(utils.intents_utils.get_response("what_time_is_it"))
|