Skip to content

Instantly share code, notes, and snippets.

@harche
harche / client.go
Created February 22, 2022 07:32 — forked from pramonow/client.go
package main
import (
"context"
"io"
"log"
pb "github.com/pramonow/go-grpc-server-streaming-example/src/proto"
"google.golang.org/grpc"
@harche
harche / server.go
Created February 22, 2022 07:32 — forked from pramonow/server.go
package main
import (
"fmt"
"log"
"net"
"sync"
"time"
pb "github.com/pramonow/go-grpc-server-streaming-example/src/proto"