001package com.aispeech.dui.dds.agent.wakeup.word;
002
003import org.json.JSONArray;
004import org.json.JSONObject;
005
006import java.util.List;
007
008/**
009 * 创建jsonobject的引擎接口
010 */
011public interface ICreateEngine {
012
013    JSONObject getJsonObject(WakeupWord wakeupWord);
014
015    JSONArray getJsonArray(List<WakeupWord> wakeupWordList);
016
017}