From 81389df9484c28dfcec1cf7592b8d0f8b7e4e8e1 Mon Sep 17 00:00:00 2001 From: Alexander Kiryukhin Date: Sat, 21 May 2022 20:38:21 +0300 Subject: Improvments. Breaking changes --- examples/http/main.go | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 examples/http/main.go (limited to 'examples/http/main.go') diff --git a/examples/http/main.go b/examples/http/main.go deleted file mode 100644 index 5c24867..0000000 --- a/examples/http/main.go +++ /dev/null @@ -1,43 +0,0 @@ -package main - -import ( - "context" - "errors" - "net/http" - - httpRPC "go.neonxp.dev/jsonrpc2/http" - "go.neonxp.dev/jsonrpc2/rpc" -) - -func main() { - s := httpRPC.New() - - s.Register("multiply", rpc.Wrap(Multiply)) - s.Register("divide", rpc.Wrap(Divide)) - - http.ListenAndServe(":8000", s) -} - -func Multiply(ctx context.Context, args *Args) (int, error) { - return args.A * args.B, nil -} - -func Divide(ctx context.Context, args *Args) (*Quotient, error) { - if args.B == 0 { - return nil, errors.New("divide by zero") - } - quo := new(Quotient) - quo.Quo = args.A / args.B - quo.Rem = args.A % args.B - return quo, nil -} - -type Args struct { - A int `json:"a"` - B int `json:"b"` -} - -type Quotient struct { - Quo int `json:"quo"` - Rem int `json:"rem"` -} -- cgit v1.2.3