github.com/angenalZZZ/gofunc@v0.0.0-20210507121333-48ff1be3917b/data/queue/nsq/nsq.go (about) 1 package nsq 2 3 var ( 4 // Default NSQ TCP Address 5 NSQdTCPAddr = "127.0.0.1:4150" 6 NSQdTCPAddrList = []string{"127.0.0.2:4150"} 7 8 // Default LOOKUP HTTP Address 9 LOOKUPdHTTPAddr = "127.0.0.1:4161" 10 LOOKUPdHTTPAddrList = []string{"127.0.0.1:4161"} 11 12 // Test Topic and Channel 13 TestTopic = "TestTopic" 14 TestChannel = "TestChannel" 15 )