aboutsummaryrefslogtreecommitdiff
path: root/examples/http/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'examples/http/main.go')
-rw-r--r--examples/http/main.go43
1 files changed, 0 insertions, 43 deletions
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"`
-}