- update fun

master v1.0.82
李光春 2 years ago
parent 5b328feee9
commit 729bbf76c6

@ -11,8 +11,11 @@ import (
) )
// ApiClientFun *ApiClient 驱动 // ApiClientFun *ApiClient 驱动
type ApiClientFun func() *ApiClient
// ApiClientJsonFun *ApiClient 驱动
// jsonStatus bool json状态 // jsonStatus bool json状态
type ApiClientFun func() (*ApiClient, bool) type ApiClientJsonFun func() (*ApiClient, bool)
// ApiClient 接口 // ApiClient 接口
type ApiClient struct { type ApiClient struct {

@ -1,5 +1,5 @@
package golog package golog
const ( const (
Version = "1.0.81" Version = "1.0.82"
) )

@ -18,8 +18,11 @@ import (
) )
// GinClientFun *GinClient 驱动 // GinClientFun *GinClient 驱动
type GinClientFun func() *GinClient
// GinClientJsonFun *GinClient 驱动
// jsonStatus bool json状态 // jsonStatus bool json状态
type GinClientFun func() (*GinClient, bool) type GinClientJsonFun func() (*GinClient, bool)
// GinClient 框架 // GinClient 框架
type GinClient struct { type GinClient struct {

Loading…
Cancel
Save