github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/protocol/keybase1/notify_can_user_perform.go (about)

     1  // Auto-generated to Go types and interfaces using avdl-compiler v1.4.10 (https://github.com/keybase/node-avdl-compiler)
     2  //   Input file: avdl/keybase1/notify_can_user_perform.avdl
     3  
     4  package keybase1
     5  
     6  import (
     7  	"github.com/keybase/go-framed-msgpack-rpc/rpc"
     8  	context "golang.org/x/net/context"
     9  	"time"
    10  )
    11  
    12  type CanUserPerformChangedArg struct {
    13  	TeamName string `codec:"teamName" json:"teamName"`
    14  }
    15  
    16  type NotifyCanUserPerformInterface interface {
    17  	CanUserPerformChanged(context.Context, string) error
    18  }
    19  
    20  func NotifyCanUserPerformProtocol(i NotifyCanUserPerformInterface) rpc.Protocol {
    21  	return rpc.Protocol{
    22  		Name: "keybase.1.NotifyCanUserPerform",
    23  		Methods: map[string]rpc.ServeHandlerDescription{
    24  			"canUserPerformChanged": {
    25  				MakeArg: func() interface{} {
    26  					var ret [1]CanUserPerformChangedArg
    27  					return &ret
    28  				},
    29  				Handler: func(ctx context.Context, args interface{}) (ret interface{}, err error) {
    30  					typedArgs, ok := args.(*[1]CanUserPerformChangedArg)
    31  					if !ok {
    32  						err = rpc.NewTypeError((*[1]CanUserPerformChangedArg)(nil), args)
    33  						return
    34  					}
    35  					err = i.CanUserPerformChanged(ctx, typedArgs[0].TeamName)
    36  					return
    37  				},
    38  			},
    39  		},
    40  	}
    41  }
    42  
    43  type NotifyCanUserPerformClient struct {
    44  	Cli rpc.GenericClient
    45  }
    46  
    47  func (c NotifyCanUserPerformClient) CanUserPerformChanged(ctx context.Context, teamName string) (err error) {
    48  	__arg := CanUserPerformChangedArg{TeamName: teamName}
    49  	err = c.Cli.Notify(ctx, "keybase.1.NotifyCanUserPerform.canUserPerformChanged", []interface{}{__arg}, 0*time.Millisecond)
    50  	return
    51  }