1234567891011121314 |
- # -*- coding: utf-8 -*-
- from __future__ import division
- from .__load__ import *
- class Robot(object):
- def __init__(self, profiling=False):
- self.start()
- def say(self, content):
- print content
- def start(self):
- self.asr = Demeter.service('arc.load')
|