实现基本的反向代理

This commit is contained in:
GoEdgeLab
2020-09-27 15:26:06 +08:00
parent 47a1a477f3
commit ee2281b581
13 changed files with 522 additions and 60 deletions
+13
View File
@@ -0,0 +1,13 @@
package utils
import (
"testing"
"time"
)
func TestUnixTime(t *testing.T) {
for i := 0; i < 5; i++ {
t.Log(UnixTime(), "real:", time.Now().Unix())
time.Sleep(1 * time.Second)
}
}