42 lines
698 B
Go
42 lines
698 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"errors"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/neonxp/rpc"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
s := jsonrpc2.New()
|
||
|
s.Register("multiply", jsonrpc2.Wrap(Multiply))
|
||
|
s.Register("divide", jsonrpc2.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"`
|
||
|
}
|