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