GITLAB

郑军 / nunu

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • nunu
  • ..
  • service
  • PatchConfigService.java
  • 79dbfcff   first commit Browse Code »
    zhengjun@51feijin.com
    2020-11-02 10:59:58 +0800  
PatchConfigService.java 278 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.brframework.webapppatch.service;

import com.brframework.webapppatch.domain.AppPatchConfig;

/**
 * 热更新配置
 * @author xu
 * @date 2019/11/14 17:16
 */
public interface PatchConfigService {

    AppPatchConfig get();

    void set(AppPatchConfig config);

}