package messaging import ( "fmt" ) func MessagingService(ch chan string) { for msg := range ch { fmt.Println("Messaging Service: ", msg) } }