소스 검색

Changed repository location

luis 8 년 전
부모
커밋
3f37de63b5
2개의 변경된 파일10개의 추가작업 그리고 5개의 파일을 삭제
  1. 2 2
      binAssets/binAssets.go
  2. 8 3
      main.go

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 2 - 2
binAssets/binAssets.go


+ 8 - 3
main.go

@@ -5,17 +5,22 @@ package main
 
 import (
 	"fmt"
-	"hexasoftware/cmd/httpServe/binAssets"
-	_ "hexasoftware/lib/prettylog/global"
 	"io"
 	"io/ioutil"
-	"log"
 	"mime"
 	"net"
 	"net/http"
 	"os"
 	"path/filepath"
 	"strings"
+
+	"dev.hexasoftware.com/hxs/httpServe/binAssets"
+
+	"dev.hexasoftware.com/hxs/prettylog"
+)
+
+var (
+	log = prettylog.New("httpServe")
 )
 
 func CreateHandleFunc(prefix string) func(http.ResponseWriter, *http.Request) {