pkg reorg

This commit is contained in:
2021-11-16 21:26:51 -03:00
parent 502d1e5a7e
commit fecf1df963
7 changed files with 20 additions and 20 deletions
+3 -3
View File
@@ -2,16 +2,16 @@ package main
import (
"fmt"
"go.digitalcircle.com.br/open/simplemq/lib/smqcli"
"go.digitalcircle.com.br/open/simplemq/lib/types"
"log"
"runtime"
"simplemq/lib/client"
"simplemq/lib/types"
"time"
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
c, err := client.New("ws://localhost:8080/ws")
c, err := smqcli.New("ws://localhost:8080/ws")
if err != nil {
panic(err.Error())
}