aboutsummaryrefslogtreecommitdiff
path: root/examples/http/main.go
diff options
context:
space:
mode:
authorAlexander Kiryukhin <a.kiryukhin@mail.ru>2022-05-21 20:38:21 +0300
committerAlexander Kiryukhin <a.kiryukhin@mail.ru>2022-05-21 20:38:21 +0300
commit81389df9484c28dfcec1cf7592b8d0f8b7e4e8e1 (patch)
tree7a7d0440481e45b999e828b1e5ba2b28129658bc /examples/http/main.go
parentd4708a3665e546eea57611b17441ad9b8c89e9a4 (diff)
Improvments. Breaking changes
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"`
-}