Przeglądaj źródła

Changed repository location

luis 7 lat temu
rodzic
commit
3f37de63b5
2 zmienionych plików z 10 dodań i 5 usunięć
  1. 2 2
      binAssets/binAssets.go
  2. 8 3
      main.go

Plik diff jest za duży
+ 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) {