package erp import ( "fmt" ) func ERPService(ch chan string) { for msg := range ch { fmt.Println("ERP Service: ", msg) } }