hotword.py 195 B

1234
  1. from app.errors.base import BaseError
  2. HotwordOutofLimit = BaseError(message="Hotword out of limit,, max 200 Hotword", code=400)
  3. HotwordNotFound = BaseError(message="Hotword not found", code=404)