Files
old-backend/services/contact/contact_service.go

12 lines
142 B
Go

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