/* * ************************************************* * Copyright (c) 2018 QMTH. All Rights Reserved. * Created by Deason on 2018-07-16 17:49:59. * ************************************************* */ package cn.com.qmth.examcloud.app.service; import cn.com.qmth.examcloud.app.model.Result; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Service; /** * 网考业务服务接口 */ @Service public class OnLineExamService { private static Logger log = LoggerFactory.getLogger(OnLineExamService.class); public Result init() throws Exception { log.debug("init..."); return new Result().success(); } }