From 13a0697585d94a8f20edf22717fb03681ad94857 Mon Sep 17 00:00:00 2001 From: Dimitrii Date: Thu, 28 Jan 2021 14:26:52 +0300 Subject: [PATCH] remove sleep --- example/base_example/main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/example/base_example/main.go b/example/base_example/main.go index 4f039a6..272eb72 100644 --- a/example/base_example/main.go +++ b/example/base_example/main.go @@ -9,7 +9,6 @@ import ( "log" "math" "os" -"time" darknet "github.com/LdDl/go-darknet" "github.com/disintegration/imaging" ) @@ -92,7 +91,6 @@ func main() { // } } } - time.Sleep(100*time.Millisecond) } func imageToBytes(img image.Image) ([]byte, error) {