重构包结构,实现类统一放入impl包中

This commit is contained in:
BinaryWang
2016-07-22 10:37:47 +08:00
parent bcbc10d277
commit d8828a2c4e
17 changed files with 17 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
package me.chanjar.weixin.mp.api;
package me.chanjar.weixin.mp.api.impl;
import com.google.gson.*;
import com.google.gson.internal.Streams;
@@ -17,7 +17,7 @@ import me.chanjar.weixin.common.util.crypto.SHA1;
import me.chanjar.weixin.common.util.crypto.WxCryptUtil;
import me.chanjar.weixin.common.util.http.*;
import me.chanjar.weixin.common.util.xml.XStreamInitializer;
import me.chanjar.weixin.mp.api.impl.*;
import me.chanjar.weixin.mp.api.*;
import me.chanjar.weixin.mp.bean.*;
import me.chanjar.weixin.mp.bean.result.*;
import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;