12 lines
142 B
Go
12 lines
142 B
Go
package contact
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func ContactService(ch chan string) {
|
|
for msg := range ch {
|
|
fmt.Println("Contact Service: ", msg)
|
|
}
|
|
}
|