1
0
Fork 0

feat: remove debug print

master
502647092 2018-09-03 00:23:30 +08:00
parent 3598c872e3
commit 1893f06bee
1 changed files with 0 additions and 2 deletions

View File

@ -43,7 +43,6 @@ func startServer(b string) {
g.POST("/", func(c *gin.Context) {
text = c.Query("text")
time, _ = strconv.ParseInt(c.Query("time"), 10, 64)
fmt.Printf("Update Clipboard: %s\n", text)
})
g.Run(b)
}
@ -72,7 +71,6 @@ func readClipboard(a string) {
old = sText
updateTime = sTime
clipboard.WriteAll(sText)
fmt.Printf("Update Clipboard: %s\n", sText)
}
}
}