github.com/volts-dev/volts@v0.0.0-20240120094013-5e9c65924106/internal/test/data.go (about) 1 package test 2 3 type ( 4 Args struct { 5 Num1 int 6 Num2 int 7 Str string 8 Flt float64 9 } 10 11 Reply struct { 12 Num int 13 Str string 14 Flt float64 15 } 16 17 // Arith interface { 18 // Mul(hd *router.TRpcContext, args *test.Args, reply *test.Reply) error 19 // } 20 )