2021-06-30 17:53:06 +03:00
|
|
|
// Code generated by protoc-gen-go-micro. DO NOT EDIT.
|
2021-10-27 01:24:35 +03:00
|
|
|
// protoc-gen-go-micro version: v3.5.3
|
2021-01-19 04:15:57 +03:00
|
|
|
// source: github.proto
|
2021-06-30 17:53:06 +03:00
|
|
|
|
2021-01-19 04:15:57 +03:00
|
|
|
package pb
|
|
|
|
|
|
|
|
import (
|
2021-02-27 13:51:39 +03:00
|
|
|
context "context"
|
2021-10-27 01:24:35 +03:00
|
|
|
api "go.unistack.org/micro/v3/api"
|
|
|
|
client "go.unistack.org/micro/v3/client"
|
2021-01-19 04:15:57 +03:00
|
|
|
)
|
|
|
|
|
2021-06-30 17:53:06 +03:00
|
|
|
var (
|
2021-07-16 00:41:10 +03:00
|
|
|
GithubName = "Github"
|
|
|
|
|
2021-06-30 17:53:06 +03:00
|
|
|
GithubEndpoints = []api.Endpoint{
|
2021-08-20 23:03:51 +03:00
|
|
|
{
|
2021-02-27 13:51:39 +03:00
|
|
|
Name: "Github.LookupUser",
|
|
|
|
Path: []string{"/users/{username}"},
|
|
|
|
Method: []string{"GET"},
|
|
|
|
Handler: "rpc",
|
|
|
|
},
|
2021-08-20 23:03:51 +03:00
|
|
|
{
|
2021-03-30 18:34:04 +03:00
|
|
|
Name: "Github.LookupUserWithoutPath",
|
|
|
|
Path: []string{"/{username}"},
|
|
|
|
Method: []string{"GET"},
|
|
|
|
Handler: "rpc",
|
|
|
|
},
|
2021-01-19 04:15:57 +03:00
|
|
|
}
|
2021-06-30 17:53:06 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func NewGithubEndpoints() []api.Endpoint {
|
|
|
|
return GithubEndpoints
|
2021-01-19 04:15:57 +03:00
|
|
|
}
|
|
|
|
|
2021-02-27 13:51:39 +03:00
|
|
|
type GithubClient interface {
|
|
|
|
LookupUser(ctx context.Context, req *LookupUserReq, opts ...client.CallOption) (*LookupUserRsp, error)
|
2021-03-30 18:34:04 +03:00
|
|
|
LookupUserWithoutPath(ctx context.Context, req *LookupUserReq, opts ...client.CallOption) (*LookupUserRsp, error)
|
2021-01-19 04:15:57 +03:00
|
|
|
}
|
|
|
|
|
2021-02-27 13:51:39 +03:00
|
|
|
type GithubServer interface {
|
|
|
|
LookupUser(ctx context.Context, req *LookupUserReq, rsp *LookupUserRsp) error
|
2021-03-30 18:34:04 +03:00
|
|
|
LookupUserWithoutPath(ctx context.Context, req *LookupUserReq, rsp *LookupUserRsp) error
|
2021-01-19 04:15:57 +03:00
|
|
|
}
|