From 7b7936eccf58f3c05200f4c7f9c2ffb8a1c6f523 Mon Sep 17 00:00:00 2001
From: 554325746@qq.com <554325746@qq.com>
Date: 星期一, 17 二月 2020 14:00:17 +0800
Subject: [PATCH] fix
---
clientFactory.go | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/clientFactory.go b/clientFactory.go
index 0bb07d3..d498d71 100644
--- a/clientFactory.go
+++ b/clientFactory.go
@@ -2,5 +2,8 @@
//Factory new client
func NewClient() Client {
- return &HttpClient{}
+ var client Client
+ client = &HttpClient{}
+ //client = &ReqRepClient{}
+ return client
}
--
Gitblit v1.8.0